| CSS rules are not rendered for HTML elements displayed with IE but work with other browsers |
|
|
| |
You are starting to appreciate the flexibility of CSS and find that using attribute selectors is quite efficient to rule over form elements ... well that works with Mozilla pretty fine but when you switch for a check to a recent MS Internet Explorer there comes the disappointment: no rendering is done.
|
|
| How it was solved |
|
|
| |
The simple truth is that IE is not able to handle attribute selectors. The best you can do is to use class selectors or specific id selectors depending on the context. (But it worked so fine in ....)
|
|