CSS question

I’ve just comleted a tutorial on CSS and can see many benefits in its use. but my question is when you make a page and you want that to be the layout for the rest of the site do you:

A - save the html page with the linked CSS as a template, using the template to build the rest of your site. As any changes in the html will be universally applied.

B - make different html pages and link the CSS.

You use B typically :slight_smile:

It depends on the site. I usually go with A. On larger sites I may have more than one template and more than one css file. It makes updates so much quicker, and keeps the look of the site, or the individual sections of the site, consistant.

*Originally posted by abzoid *
**It depends on the site. I usually go with A. On larger sites I may have more than one template and more than one css file. It makes updates so much quicker, and keeps the look of the site, or the individual sections of the site, consistant. **

i agree, that’s the way I usually try to do it, but 9 times out of 10, I end up with a bizzare combination of A, B and C (Adding Styles as I go to the top of the HTML Page), and then I end up having to go back in, and streamline everything… especially with large sites, and sites that I have to ‘take over’ from someone else. Just try whichever works for you. :beam: