Forum Moderators: not2easy
Another option is a <div>:
#line {
margin: 0;
padding: 0;
width: 100%;
height: 3px;
background-color: #FFF;
}
<div id="line"></div>
I have also done this with <p>
.line {
border-bottom-width: 3px;
border-bottom-style: solid;
border-bottom-color: #FFF;
}
<p class="line"></p>
Hope this helps. If you search WebmasterWorld, I know the <hr /> problem has been discussed before.
Marshall