trevor bayliss wrote:
> How can I condense this CSS? Is it possible? thank you
>
>       BORDER-TOP-STYLE: none; 
>         BORDER-RIGHT-STYLE: none; 
>         BORDER-LEFT-STYLE: none; 
>         BORDER-BOTTOM-STYLE: none;
>
>
>
>  


Assuming the above is in reference to this selector from the uri 
presented earlier:

A IMG {
    BORDER-TOP-STYLE: none;
        BORDER-RIGHT-STYLE: none;
        BORDER-LEFT-STYLE: none;
        BORDER-BOTTOM-STYLE: none;
}


a img {
    border:none;
}

Aside: The uppercase in your CSS file could drive a person nuts.

______________________________________________________________________
css-discuss [[email protected]]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to