<hr> not showing
try this code :
hr {
border: 0;
clear:both;
display:block;
width: 96%;
background-color:#FFFF00;
height: 1px;
}
JSFiddle link http://jsfiddle.net/EXXrB/
Hope it will help you to resolve your problem.
Simple Way to get best Horizontal Line
. horizontalLine {
border: none;
border-bottom: 1px solid gainsboro;
}
hr
{
border:solid 1px black;
width: 96%;
color: #FFFF00;
height: 1px;
}
Remove border: 0;
from the css rule for hr
Demo