I have the following HTML markup:
<div class="drag a"></div>
<div class="drop a"></div>
I also have the following CSS rule, which should only be applied to my 2nd div:
.drop.a
{
background-color:red;
}
This is working fine, except in Internet Explorer 9 the CSS rule is being applied to both elements.
Why is this? I thought this kind of CSS was universally compatible with all browsers?