-3
How can I change the color of a "hr partition" "
" I tried the following codes in the CSS tab of the file:
.hr{
color: #29303b;
}
hr{
color: #29303b;
}
-3
How can I change the color of a "hr partition" "
.hr{
color: #29303b;
}
hr{
color: #29303b;
}
2
Just change the color of the border-color: #sua-cor;
See the example below.
You can still vary the border-style
if you want a different room...
hr {
border-color: #ff0000;
}
<hr>
<br>
<hr style="border-style: dotted;">
1
A gringo stack workaround https://stackoverflow.com/questions/6382023/changing-the-color-of-an-hr-element
hr {
display: block;
height: 1px;
border: 0;
border-top: 1px solid #ccc;
margin: 1em 0;
padding: 0;
}
Browser other questions tagged html css website
You are not signed in. Login or sign up in order to post.
Hello, take a look at this material, https://www.w3schools.com/tags/tag_hr.asp
– Gustavo André Richter
Bruno, the property
color
only applies to text. In the case of HR you would use the propertyborder-color
.– Phiter