CSS rules for td elements with colspan > 1 in IE

Viewed 26569

I need to apply some css styles to td elements which have 'colspan' attribute and its value greater than 1.

I do the following:

td[colspan][colspan!=1] {
 background: red;
}

It works all browsers instead IE (include latest). Please help. How can I fix that.

1 Answers
Related