Code: Select all
hr {
display: block;
padding: 0;
height: 20px;
margin: 10px 0;
background: none;
background-image: url(/images/stripe.gif);
border: none;
}You can see the page at http://trunk.swiftmailer.org/ to know what I'm talking about (ignore the other CSS issues... I'm probably already working on them right now
Cheers
EDIT | Never mind this fixes it, but contextually it's not what I wanted. At leats the rule will show in non-CSS browsers though
Code: Select all
<div class="rule"><hr /></div>Code: Select all
div.rule {
height: 20px;
background-image: url(/images/stripe.gif);
margin: 10px 0;
}
div.rule hr {
display: none;
}