groups

name language licence
blog entry - Category CSS RapidWeaver
iCal - vertical Divider CSS iCal
blog entry - p Tag CSS RapidWeaver
Collage 2 - Fluid Width and Spacing CSS Collage 2
blog archive - Link Enabled CSS RapidWeaver
navcontainer a - General CSS RapidWeaver
Colored Tabs CSS TabLoom
ol - Arabic Numbers CSS RapidWeaver

< 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 >



language: CSS
licence: TabLoom

Colored Tabs

options: view full snippetsend to code collector
/*The tabs are list items with no individual id so the only way to make them different colors is to use the adjacent sibling selector. This will not work in IE6, but all other browsers will be fine*/

#tabs li{ 
background: blue 
}

#tabs li + li{ 
background: red 
}

#tabs li + li + li{ 
background: green 
}
	
(Continues...)