+ 2
Measurement attribute
Hi my dears! Hope you are happy. My question is about the meaning of âhrâ in the measurement attribute and if there is a âhr lengthâ attribute. Thank you, God bless all of you!
8 Respostas
+ 3
"hr" are the initials for
"horizontal rule"
and it's an empty tag like this:
<hr />.
If you're looking to set the width of <hr /> you can use the width attribute like this:
<hr width="50px" />
As far as i know there is no measurement unit by the name of "hr" or an attribute by the name of "measurement".
Hope you find the info useful.
+ 4
Thank you KINGDX, but I still do not get It, I believe It is important to know use both, in HTML and CSS, but what should I use? Have one of them that are more recommendable?
+ 4
Thank you Xianort X, you makes me understand more about It. KINGDX the same to you. I really appreciate your help guys!
Peace and love
+ 3
You're welcome Sr.Viniisil glad i can be of some useđ
+ 2
You can set its width with CSS <hr style="width : 50%"> or 50px or 50 em, whatever your want
+ 2
html can't go without CSS, html alone doesn't look like anything the eye can be pleased to see. whenever you need to manipulate the display properties of an html element (a div, an input, hr, a, span...etc) you will need to use CSS to alter the color, the size, the placement, to center an element, to move it left/right/up/down, to animate the elemnt and so on and so forth
+ 2
For an additional information, the width attribute for hr is deprecated and should not be used. Starting from HTML5, CSS should always be used to stylize elements. Take a look at the compatibility note here https://www.w3schools.com/tags/att_hr_width.asp
good luck
+ 2
measurement attributes are the length, which is considered and written as "width" and the height
they are measured in pixels or percentages
Hope it was helpful