In CSS, if it is

#main #display img { height: 80px }

that means all images within an element with id display that is within another element with id main. But does it make sense or is it legal since id seems to be just global names.

It is because SASS actually allows nesting and some code may nest it like

#main
  width: 700px

  #display
    img
      height: 80px

which is "id within id".

Update: this is because, supposedly, there should never be

#main #display img { height: 80px }
#sidebar #display img { height: 80px }

that is, there should never be two elements with an id display. So normally, instead of writing

#main #display img { height: 80px }

you may as well write

#display img { height: 80px }
link|improve this question

67% accept rate
2  
Re your update: There should never be these two elements on the same page. It could be however, that on two different pages, #display is a child of #main on one of them, and a child of #sidebar on the other. – Pekka Jun 12 '10 at 0:23
@Pekka so you mean "#main #display" is good because it is good for matching your first scenario but won't match your second scenario, so "#main #display" is a perfectly good and useful selector. – 動靜能量 Jun 12 '10 at 8:40
Lin it can be a perfectly good and useful selector, yes. – Pekka Jun 12 '10 at 8:49
feedback

2 Answers

up vote 6 down vote accepted

Sure - if you have one style sheet on multiple pages, there may be scenarios where this actually makes sense ("if #display is a child of #main, show images this way, otherwise that way").

It's definitely legal, no problem.

link|improve this answer
feedback

It makes sense. It's very restrictive, but that might be just what you are looking for.

E.g. if the same CSS is used with many different documents where the structure may vary.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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