-1

So I have come up with the following style sheet in jsfiddle http://jsfiddle.net/8FNZE/2/ and I want to use that as the base of a bunch of following web pages. My questions is can I use that page with the included stylesheet affecting only that HTML that is there and then for the child templates can I have a different CSS doc that affects only the child's HTML. I am using Jinja2 and coding the app with python.

If that won't work should I just make a big stylesheet with information for all of the pages or what would the best way to go about it be?

Thanks!

clifgray
  • 4,313
  • 11
  • 67
  • 116

1 Answers1

0

I would look at this post which details the pros and cons of using a single stylesheet versus multiple ones.

Community
  • 1
  • 1
Ben.Vineyard
  • 1,149
  • 8
  • 14
  • Great link for pros and cons. From the link I take it that it will all work properly if I use the one main style sheet from the parent and use child sheets as well it just might be a tad slower. – clifgray Jun 21 '12 at 00:46
  • Yes, clifgray, essentially you have to balance performance versus ease of maintenance. – Ben.Vineyard Jun 21 '12 at 00:49