Styling the <hr /> tag in CSS

To give the <hr /> tag a different look, change the border style from the following code:

hr {
	clear: both;
	height: 0px;
	border: 0px;
	border-top: 1px dotted #ccc;
}

Leave a Reply

Your email address will not be published.