+ 3
How can I change the thickness of the "hr" HTML attribute?
Can I change the thickness of the "hr" HTML attribute?
2 Antworten
+ 5
There are two ways you can do it in (talking about the <hr> tag), one is using the size attribute:
<hr size="30px">
Remember, the size attribute is deprecated in HTML5!
And the other one is to use CSS:
<hr style="height:30px;">
+ 1
thanks bro