CSS Dotted/Dashed HR Style
Ever had problems styling an HR element to be dotted or dashed and look correct in all browsers?
Well here is a simple solution for you:
[CSS]
hr.{
background-color:#fff;
border:#000 1px dotted;
border-style: none none dotted;
color:#fff;
}
[/CSS]


Comments(1)