I want to change the color of my hr
tag using CSS. The code I've tried below doesn't seem to work:
hr { color: #123455; }
The default color of hr is black color.
Yes, start with <hr> in HTML.
So if your background is for instance white ( #fff ) you can always make your HR very light. Like #eee . And use a CSS file instead of in-line styles. They provide a central definition for the whole site not just a particular element.
I think you should use border-color
instead of color
, if your intention is to change the color of the line produced by <hr>
tag.
Although, it has been pointed in comments that, if you change the size of your line, border will still be as wide as you specified in styles, and line will be filled with the default color (which is not a desired effect most of the time). So it seems like in this case you would also need to specify background-color
(as @Ibu suggested in his answer).
HTML 5 Boilerplate project in its default stylesheet specifies the following rule:
hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }
An article titled “12 Little-Known CSS Facts”, published recently by SitePoint, mentions that <hr>
can set its border-color
to its parent's color
if you specify hr { border-color: inherit }
.
border-color
works in Chrome and Safari.background-color
works in Firefox and Opera.color
works in IE7+.If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With