Home › Forums › CSS › how many CSS files? › Re: how many CSS files?
October 3, 2008 at 10:32 am
#50281
Member
You can mark the different styles for each page by a small comment: /*…..*/
If you got different styles on the pages (eg. different backgrounds) you can give id’s on the body tag:
<body id="startpage">…</body>
stylesheet:
#startpage
{
…styles}