Cita:
Ejemplo:This article will attempt to provide an exhaustive, easy-to-use reference for developers desiring to know the differences in CSS support for IE6, IE7 and IE8. This reference contains brief descriptions and compatibility for:...
Cita:
Bueno para que lo tengas a mano, y complementándolo con esta otra página donde encontrarás soluciones para unos cuantos bug's.Attribute Selectors
Example
a[href] {
color: #0f0;
}
Description
This selector allows an element to be targeted only if it has the specified attribute. In the example above, all anchor tags that have href attributes would qualify, but not anchor tags that did not have href attributes.
Support
IE6: No
IE7: Yes
IE8: Yes
Example
a[href] {
color: #0f0;
}
Description
This selector allows an element to be targeted only if it has the specified attribute. In the example above, all anchor tags that have href attributes would qualify, but not anchor tags that did not have href attributes.
Support
IE6: No
IE7: Yes
IE8: Yes
Un saludo