css Hack,IE 11で模擬テストして、条件の注釈は本当のIEを探して測って、模擬のは無効です

5478 ワード

<!DOCTYPE html>

<!--[if lt IE 7 ]> <html class="ie6 ie"> <![endif]-->

<!--[if IE 7 ]>    <html class="ie7 ie"> <![endif]-->

<!--[if IE 8 ]>    <html class="ie8 ie"> <![endif]-->

<!--[if IE 9 ]>    <html class="ie9 ie"> <![endif]-->

<!--[if (gt IE 9)|!(IE)]><!-->

<html>

<!--<![endif]-->



<head>

    <meta charset="UTF-8">

    <title>Document</title>

    <style>

    div{

        width: 200px;

        height: 200px;

        background: #000;

        /*background: #f00\9; /* (IE11 - IE6]   IE11 */

        /*background: #f00\0; /* [IE8  - IE11]   IE8 */

        /*background: #f00/9; /* [IE8  - IE11)    IE11 */
     /*background: #f00\9\0; /* [IE8 - IE11) IE11 */
     /*background: #f00\0\9; /* [IE8 - IE11) IE11 */1
} </style> <!--[if IE 8 ]> <style> div{background-color: #f00;} </style> <![endif]--> </head> <body> <div></div> </body> </html>