How can I change the number of pixels above and below the line in an <hr> tag?
Printable View
How can I change the number of pixels above and below the line in an <hr> tag?
I am most likely wrong, but I dont think its possible, I can get the left & right spacing working fine though :D
(HR{Margin-right: 100px})
the only thing I can suggest is putting in an empty table cell and set the height :p but i'm assuming u'v already thought of that.
ME!
you can fake a <hr> by using a <div>
Code:.hr {
border-bottom: 1px solid #f0f0f0;
border-top: 1px solid #808080;
margin: 3px 5px 3px 5px;
}
Cool, the .hr class in the stylesheet worked. :)
Yeah, regular <hr>'s suck :p