The following example works in Firefox 4, but not in Internet Explorer 8:
HTML:
<div class='first'>A</div>
<div>B</div>
<div>C</div>
CSS:
div:not(.first) {
color: red;
}
What workaround would you suggest to make it work in both browsers ?
:first-childselector rather thanclass='first'– Spudley Apr 27 '11 at 12:13