Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

As usual, I've Googled this and read through the documentation (W3C's CSS Selectors documentation), but still have been unable to find an answer.

It's very difficult and almost definitely counter-productive to explain why I've set my stylesheets up this way, so I'll just show you a section of one of my CSS stylesheets and ask what I came here to ask.

I know that .className, for example, is a global class - it is applied to every element that uses it on all pages that the stylesheet is linked to - and that #sectionID .className, for example, is a local class - it is only applied to the elements that uses it inside of the element with the ID of sectionID.

So, is there is a way to somehow set a temporary / relative root for a style sheet, so that the following extract:

#sectionID1 .className1, #sectionID1 .className2, #sectionID1 .className3, #sectionID1 a, #sectionID1 a:link, #sectionID1 a:visited, #sectionID1 a:hover, #sectionID1 a:active, #elementID2 input {
    color: #0084B4;
}

can become something like this:

#sectionID1 .className1, .className2, .className3, a:link, a:visited, a:hover, a:active, #elementID2 input {
    color: #0084B4;
}

Thanks :)

(Sorry for my bad explaining and, almost definite, incorrect use of terminology :L)

share|improve this question

1 Answer

up vote 4 down vote accepted

No but you can use something like LESS, to achieve such dynamics

share|improve this answer
Oh, that's fantastic! I've never heard of that before. Thank you! :D – Ben Hooper May 16 '12 at 14:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.