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.