Problem loading . css compressed in IE9

Asked

Viewed 152 times

1

I have a problem loading styles from one page exclusively in IE9, in other browsers and versions IE10-11 work properly. The page uses Bootstrap 3.1 and another template, so it uses multiple files .css. These files are being compressed because of optimization, however while loading the page only the files .css Bootstrap is being loaded.

I share part of the code where the .css:

<!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?

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.