I have a div:

    <div class="navigation mainPage"></div>

I need to specify that: every DIV that has a class "navigation" AND class "mainPage" should have "width: 999px".

Is this possible? thx

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted
.navigation.mainPage { width: 999px; }
link|improve this answer
I have read an article that other browsers(specially old browsers don't support multiple css in a single element. Here is the link webdesign.about.com/od/css/qt/tipcssmulticlas.htm – jerjer Oct 8 '09 at 13:36
I meant multiple css classes in a single element. – jerjer Oct 8 '09 at 13:39
This does not work in IE6, not as intended. In IE6, this selector matches on the mainPage class only. See so.piskvor.org/1537692 for a test case. – Piskvor Oct 8 '09 at 14:18
feedback

You can try

.navigation.mainPage { width: 999px; }

but this doesn't work in IE6. You can try to go around by doing

<div class="navigation navigation-mainPage"></div>

and then CSS

.navigation-mainPage { width: 999px; }

Even though this isn't the nicest solution, but I don't know of any other way around it.

link|improve this answer
feedback

Try this:

.navigation, .mainPage{ width:999px; overflow:hidden;}
link|improve this answer
That would make everything with the class navigation have a width of 999px. They only want the width set to 999px with the div has navigation and mainpage classes set. – rikh Oct 8 '09 at 13:13
They are classes not IDs so they should be .navigation and .mainPage. – James Goodwin Oct 8 '09 at 13:14
#navigation means 'id="navigation"', not 'class="navigation"'; also, comma means "OR", as in "navigation or mainPage or both" – Piskvor Oct 8 '09 at 13:17
So what should be the correct one? – jerjer Oct 8 '09 at 13:31
1  
re OR: See w3schools.com/css/css_syntax.asp , header Grouping. E.g. ".class1, .class2" would match elements with class1 OR class2, whereas ".class1.class2" would only match elements with class1 AND class2, and ".class1 .class2" would match elements with class2 inside elements with class1. – Piskvor Oct 8 '09 at 13:39
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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