+ 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!