How to make a Dotted Line hr in CSS

LIKE THIS POST? SHAR THIS POST
Share On MySpace !
To make a great looking Dotted line <hr> in your website using CSS, refer this tutorial. This styling will support for all browsers including IE 6.

Simply add the following code in your Stylsheet,

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

Note:
Change the Color and Borders for further customization.
Tags: