Reputation: 73
I have 4 sections in a webpage and I want every section to use different stylesheet. I have 4 different stylesheets, but they have the same ids and classes, but with different values. I need this for a demo page where I can show the different styles of the same thing in one page.
Upvotes: 0
Views: 890
Reputation: 943650
CSS applies to the entire document, so your options are:
section#your-section
(followed by a descendant combinator) to each selector.(You could also hope and wait for scoped CSS to be well supported).
Upvotes: 5