Problem loading the compressed .css file in IE9

1

I'm having a problem loading one page styles exclusively in IE9, other IE10-11 browsers and versions work correctly. The page uses Bootstrap 3.1 and another template, so it uses multiple .css files. These files are being compressed per optimization account, however when loading the page only the .css of Bootstrap files are being loaded.

I share part of the code where .css is loaded:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8" />

    <?php
    foreach($view->_css as $css){
        echo '<link rel="stylesheet" href="'.$css.'">'."\n";
    }
    foreach($view->_js as $js){
        echo '<script src="'.$js.'"></script>'."\n";
    }
    ?>
    <title>Alfa</title>

What is the solution?

    
asked by anonymous 27.05.2014 / 18:14

0 answers