There's a pretty simple way I just discovered that you can use a couple divs to make like Stu said.
Here's the code:
<style type="text/css">
#customHr{
padding:0;
margin:0;
height:4px;
width:100%;
border-top:1px solid blue;
}
#customHr div{
padding:0;
margin:0;
height:1px;
width:90%;
border-top:1px solid red;
float:right;
}
</style>
You won't need the padding and margin properties, but in case you have something like div{padding:5px;} or something, this prevents it from inheriting that.
Then you just place this code wherever you want it to appear:
<div id="customHr"><div></div></div>
Of course you can change the colors if you want, I just made them red and blue to contrast each other.
Hope that helped. I tested it in IE, Opera, Netscape and Firefox and it works the same in all of them.
Edited by sq3r, 13 February 2006 - 08:16 AM.