Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 760
ole Avatar asked Dec 01 '13 13:12

ole


1 Answers

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?

like image 196
Fake Haak Avatar answered Oct 23 '22 12:10

Fake Haak