> From: Kitty Garrett
> 
> http://wwwsqueakywheels.org
> 
> My most recent puzzle is that the rules <hr> aren't showing up on the 
> site. I defined them in the style sheet as:
> 
> hr {
>       color: #006633;
>       background-color: #FFFFFF;
>       width: 2px;
> }

IE (possibly incorrectly) applies the color to the hr,
Moz and other browsers don't. They will show a color
if it is set as a background-color though.

So change the rules to:

hr {
        color: #006633;
        background-color: #006633;
        width: 2px;
}

and see how you go.

-- 
Peter Williams
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to