Hi all!
I have a problem with <hr> tag.
I want to reduce its height in IE using an external css style.
Nothing works.
I tried :
"line-height: 5px;
height: 5px;
size: 1px
margin: 0px;
padding: 0px;"
I tried all combination of these styles but nothing. The <hr> have a minimum height that always is displayed in IE if I specify a smaller height.
Please help me.
Thanks!Try this... (I haven't actually tested it, but...)hr {
font-size:1px;
}
Come to think of it, why do you need <hr> anyway? You can probably do what you want by using a border (border-bottom).
I have a problem with <hr> tag.
I want to reduce its height in IE using an external css style.
Nothing works.
I tried :
"line-height: 5px;
height: 5px;
size: 1px
margin: 0px;
padding: 0px;"
I tried all combination of these styles but nothing. The <hr> have a minimum height that always is displayed in IE if I specify a smaller height.
Please help me.
Thanks!Try this... (I haven't actually tested it, but...)hr {
font-size:1px;
}
Come to think of it, why do you need <hr> anyway? You can probably do what you want by using a border (border-bottom).