Hi Jo,

in your Style Sheet you confuse verbose border properties with
shorthand border properties.

Have a close look at
http://www.w3.org/TR/REC-CSS2/box.html#border-properties
and
http://www.w3.org/TR/REC-CSS2/box.html#border-shorthand-properties

For example, instead of writing

        border-style:solid;
        border-top:1px;
        border-right:0px;
        border-bottom:0px;
        border-left:0px;
        border-color:#980045;

you should either write this

        border-style:solid;
        border-top-width:1px;
        border-right-width:0px;
        border-bottom-width:0px;
        border-left-width:0px;
        border-color:#980045;

or this

        border-top: 1px solid #980045;
        border-right: 0;
        border-bottom: 0;
        border-left: 0;

or this

        border-style: solid;
        border-width: 1px 0 0 0;
        border-color: #980045;



Cheers,

jens
-- 
Jens Brueckmann
http://www.yalf.de
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to