Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Simple CSS question 2

Status
Not open for further replies.

GOSCO

Technical User
Sep 26, 2000
134
GB
How do I condense the following CSS entries to avoid duplication?


table.ff_querylist th.tooltip{
color: #FFF;
border: 1px solid #FFF;
background-color: #FFF;
}

table.ff_querylist td.tooltip{
color: #FFF;
border: 1px solid #FFF;
background-color: #FFF;
}

table.ff_querylist td.footer{
color: #FFF;
border: 1px solid #FFF;
background-color: #FFF;
}
 
try :

table.ff_querylist th.tooltip, table.ff_querylist td.tooltip, table.ff_querylist td.footer
{
color: #FFF;
border: 1px solid #FFF;
background-color: #FFF;
}


Greg Griffiths
Livelink Certified Developer & ECM Global Star Champion 2005 & 2006
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top