CSS Dashed Line using HR Tag
Created For: http://stackoverflow.com/q/10863582/352449
HTML
<hr class="dash" />
CSS
.dash{
border: 1px solid;
border-top: 1px dashed #322f32;
background: none;
position:absolute;
top:0;
left:10;
right:1;
height:0;
width:100px;
}