Quote:
Originally Posted by DNSB
I was asking since as far as I recall, the <hr> tag was supposed to auto-center in HTML 4.01 while align was deprecated. I seem to remember that was rather unreliable so the workaround was setting margin left and right to auto which Adobe didn't support.
|
The way to do an <hr> is...
Code:
hr {
margin-right: 45%;
margin-left: 45%;
}
That centers a 10% wide line.