Is there a way to combine two or more CSS selectors using a boolean condition - and, or, not?

Consider this <div>:

<div class="message error">
    You have being logged out due too much activity.
</div>

Could I select only those elements that contain both the classes for instance?

Something along the lines of div.message && div.error?

link|improve this question

Where do you want to do the selecting? In Javascript (using a lib?) or in a stylesheet or other language? – beggs Jan 27 '10 at 5:36
these selectors will go in a stylesheet. – Anurag Jan 27 '10 at 5:52
The question has already been answered correctly, but note that double class selectors don't work in our dear friend IE6. – infinity Jan 27 '10 at 5:53
i am working on a new application, so maybe i should figure out exactly how many of my users would be IE6 to decide if that's even worth supporting. it's a maintenance nightmare just to have IE6 support. the time spent fixing IE6 specific bugs could instead be used in adding awesome improvements to the application. – Anurag Jan 27 '10 at 6:58
feedback

2 Answers

up vote 7 down vote accepted

These should work:

&& = div.message.error {}
|| = div.message, div.error {}

Don't think you can do "not"

Edit: Just did a quick test to confirm:

<html>
    <head>
        <style type="text/css">
            div.error.message {
                background-color: red;
            }
            div.message, div.error {
                border: 1px solid green;
            }
        </style>
    </head>
    <body>
        <div>None</div>
        <div class="error">Error</div>
        <div class="message">Message</div>
        <div class="error message">Error Message</div>
    </body>
</html>

The "message", "error" and "error message" divs all have a green border and only the "error message" div has a red background.

link|improve this answer
perfect.. not is not a big worry, only and and or are.. wow we have a tongue twister here :) .. thanks a lot for the detailed example. – Anurag Jan 27 '10 at 5:55
feedback

Try div.message.error.

link|improve this answer
2  
... that, I believe is the "and" case. For "or" you can simply repeat the line with each class. – Jay Jan 27 '10 at 5:36
no way I could've guessed that. thanks a lot! – Anurag Jan 27 '10 at 5:56
feedback

Your Answer

 
or
required, but never shown

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