Search code examples
cssinternet-explorerinternet-explorer-9

IE9 does not load css fully


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.


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?