IE handling CSS differently..

liunx

Guest
I have the following..


#menu>a{
color: #FFF;
}


In Firefox this works the way I intended it to - The normal link color is a light blue, but in the menu div I want it to be white. IE ignores the tag.

Did I do something wrong, or am I going to have to find another way to get this to work with IE?You could make it like this:

.menu a{
color: #FFF;
}

Then, just specify div class=menu and it will work in ie and firefox.IE doen't support the ">" operator in CSSThanks, got it working.
 
Back
Top