I'm trying to load a compressed set of files .Css on a page, but in IE9 only loads a part of them. In other browsers and IE10-11 load correctly.
The code :
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<?php
foreach($view->_css as $css){
echo '<link rel="stylesheet" href="'.$css.'">'."\n"; //loads all .css compressed
}
foreach($view->_js as $js){
echo '<script src="'.$js.'"></script>'."\n"; //loads all .js
}
?>
<title>Test</title> ...
The file .css are: bootstrap.css , ace.css and other, but only work bootstrap.css. Someone know a fix? thanks