When trying to add a style for a element based on its id and class, i.e.
HTML:
<div id="myID" class="class1 class2">Text</div>
CSS:
#myID.class1 {border:1px solid red;}
Internet Explorer 6 (IE6) and below don't support this multiple selector capability.
Workaround:
Workaround example:
HTML:
<div class="class1 class2"><p id="myID">Text</p></div>
CSS:
.class1#myID {border:1px solid red;}