If I have the following div
<div class="sectionA" id="content">
Lorem Ipsum...
</div>
Is there a way to define a style that expresses the idea "A div with id='content' AND class='myClass'"?
Or do you have simply go one way or the other as in
<div class="content-sectionA">
Lorem Ipsum...
</div>
or
<div id="content-sectionA">
Lorem Ipsum...
</div>
img#Inboxicon on your page that is normally set to 50% opacity. However, when the user has a message, you want it to be set to 100% opacity, and the backend indicates this by adding anactiveclass to the element. In such a scenario, it does make sense to have a selector that combines both ID and classname. – Lèse majesté Jun 7 '12 at 22:33