As if one needs another reason…
As if one needs another reason to dislike IE6. Today I experienced a new bug. New for me anyway. Internet Explorer fails to render backgrounds and borders for elements that have both an ID and a Class defined. When you have one ID and several classes to choose from, IE6 only applies the background and border info from the first class listed in your css file and ignores the info in all the other classes even if the first class is not applied to your element! Crazy I know!
In other words:
#blah.beep {stuff} #blah.boop {stuff} = bad
.beep {stuff} .boop {stuff} = good
- Shelly