Brady
A moan, a groan, my life story and how me, a technically minded person just can’t seem to fit in with anybody.

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:

hr.{
	background-color:#fff;
	border:#000 1px dotted;
	border-style: none none dotted;
	color:#fff;
}

Leave a reply