I want to have an HR-shaped image. 2 pixel gif file.
I was looking for an HR tag style, but there are too many browser issues.
It uses a 2px high div with an image like bg, but in IE6 there is an add-on that I cannot get rid of.
Any suggestions are welcome!
CSS
.hr {
margin: 0; padding: 0;
height: 2px;
background-image: url('images/help-hr.gif');
background-repeat: repeat-x;
background-color: green;
}
HTML:
<p>sky</p>
<div class="hr"></div>
<p>grass</p>
source
share