southbeach
Programmer
I am looking at this and wonder what does it mean in plain English
Is this a CLASS within a CLASS - How can I set this as property to a page element?
Not knowing but trying to make sense out of it, I think:
(a) Table is set as CLASS "coolTable"
(b) Elements within this table are set as CLASS r0, r1, over, sortedAsc and sortedDesc
Will be playing with this CSS and look forward to learning a couple of things!
--
SouthBeach
The good thing about not knowing is the opportunity to learn - Yours truly, 2008.
Code:
.coolTable {
border-collapse:collapse;
margin-top:2px;
margin-bottom: 2px;
font-family: arial;
font-size: 8.5px;
text-transform: uppercase;
}
.coolTable .r0 td {}
.coolTable .r1 td {background-color:#F6F6F6;}
.coolTable .over td {background-color:#FF8800;}
.coolTable .sortedAsc {background-color:#66CC66 !important;}
.coolTable .sortedDesc {background-color:#CC6666 !important;}
}
Is this a CLASS within a CLASS - How can I set this as property to a page element?
Not knowing but trying to make sense out of it, I think:
(a) Table is set as CLASS "coolTable"
(b) Elements within this table are set as CLASS r0, r1, over, sortedAsc and sortedDesc
Will be playing with this CSS and look forward to learning a couple of things!
--
SouthBeach
The good thing about not knowing is the opportunity to learn - Yours truly, 2008.