IE9 does not load css fully

css, internet-explorer, internet-explorer-9

Solution

Bit late but for future visitors of this thread: I had the same problem and found out my project just had gotten too big. IE9 stops reading your stylesheet after 4095 selectors.

For reference: Does IE9 have a file size limit for CSS?

Problem

I have css file: ``` <head> <link rel="stylesheet" type="text/css" href="/assets/application.css" media="screen" /> ... </head> ``` With all browsers everything is fine(chrome,ff,ie8,ie10,...), except IE9. IE9 does not load css fully.

Original source

Related problems