+ 1
How to make <hr> line a different color?
I need some help to figure out how to turn the <hr> line black. Iâve tried <hr style=âcolor:black;â> and that didnât work. Iâve also tried using CSS code âhr{color: black;}â and that didnât work either.
3 Answers
+ 2
Use "border" attribute to style hr elements. I have no idea why. See here:
https://www.w3schools.com/howto/howto_css_style_hr.asp
+ 3
hr{
color: red;
}
+ 1
Thank you so much! Its kind of weird you cant use color: black; Thank you again!