On Dec 1, 2005, at 3:41 AM, Kevin Cannon wrote:
>       <div id="tabs" class="ski">...</div>
>
>       #tabs.ski {
>               background-color: green;
>       }

Excuse my noobieneess...

Why not:

<div id="tabs" class="ski">...</div>

/* Make .ski green: */
#tabs .ski {
        background-color: green;
}
/* Make .ski red: */
#tabsTwo .ski {
        background-color: red;
}
/* Or, make #tabs and .ski green: */
#tabs, .ski {
        background-color: green;
}
/* Or, even: */
#tabs, #tabs .ski {
        background-color: green;
}

-- 
¸.·´¯`·.¸¸><(((º>`·.¸¸.·´¯`·.¸¸><((((º>
·´¯`·.¸¸.·´¯`·.¸¸.·´¯`·.¸¸.·´¯`·.¸¸><((((º>
`·.¸><((((º>¸.·´¯`·.¸¸><((((º>
______________________________________________________________________
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