Forum Moderators: not2easy
Either I can have multiple classes in my CSS file - and assign those classes to each particular "list" or piece of content so i can get it to look the way i want...
-or-
I can have each piece of content always use the same class as defined in an external style sheet - and redefine that class as necessary with extra stylesheets depending on the look that particular piece of content should receive.
I guess the question can be boiled down to - Whats worse (with regard to rendering and site performance) : 1 long external CSS file, or Several Smaller External CSS files?
Thanks!
If only 10-20 pages will be different, I'd put it all in one CSS file with several classes.
If we are talking about 100s of variations, I'd consider embeding CSS directly into
<head>or even inline (if properties differ slightly, e.g. different color or font face).