css - How can i set thickness of horizontal rule in html -


how can set thickness of horizontal rule in html/css

you use size property:

<hr size="3" /> 

please note deprecated. should use styles resolve this.

hr {     height: 3px; } 

Comments

Popular posts from this blog

c# - How to set Z index when using WPF DrawingContext? -

razor - Is this a bug in WebMatrix PageData? -

visual c++ - Using relative values in array sorting ( asm ) -