[thelist] More CSS ignorance

Rob Smith rob.smith at THERMON.com
Wed Oct 27 11:44:45 CDT 2004


>How do I achieve multiple styles of link in CSS?

Two options:

A) 
<LINK REL="StyleSheet" HREF="1.css" type="text/css">
<LINK REL="StyleSheet" HREF="2.css" type="text/css">
<LINK REL="StyleSheet" HREF="3.css" type="text/css">

B) 
Stick all your styles into one style sheet:
div.leftnav{
	something:nothing;
	...
}
div.topnav{
	thisthing:everything;
	...
}
...

Rob


More information about the thelist mailing list