3
.
How would you specify the thickness and length of the horizontal line in HTML
Answers
Answered by
4
Answer:
Explanation: The following attributes of the HR element specifies the size and alignment of the horizontal rule.
...
<hr size="5" width="300" align="left">
Attribute Value Explanation
size=" " pixels the size of the thickness (height)
width=" " pixels or % the size of the widt
Answered by
1
Answer:
Size and Width
Explanation:
Size : To specify the thickness of the horizontal line. i.eg-<HR size=5>
Width : To specify the length of the horizontal line. The value can be given in pixels or in percentage of the page width. i.eg- <HR width=500> or <HR width =70%>
Similar questions