0
How to color horizontal line?
10 Answers
+ 4
To color hr in CSS
hr {
border-color: red;
}
+ 2
Give hr tag a style of border.
hr{
border: 1px solid green;
}
Although hr is removed from html5, almost all browser still supports it.
+ 2
Satnam Singh, Niush Sitaula what is HTML5 alternative to <hr>
+ 2
Maneren hr tag is not deprecated, it's supported by HTML5.
However all layout attributes of hr tag (align, noshade, size, and width) which was supported in HTML4, are no longer supported in HTML5. Use CSS to style hr tag in HTML5 instead.
+ 2
Calviղ thanks
+ 1
Maneren
<div class="hr"></div>
<style>
.hr{
border-top: 2px solid green;
width: 100%;
}
</style>
+ 1
Niush Sitaula thanks
0
Hmmm... Try css
0
Thanks All of you
- 2
Suck russian pidor