码迷,mamicode.com
首页 > Web开发 > 详细

css Hack,用IE11模拟测试的,条件注释要找真IE去测,模拟的无效

时间:2014-06-03 07:12:01      阅读:373      评论:0      收藏:0      [点我收藏+]

标签:c   style   class   blog   code   java   

bubuko.com,布布扣
<!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\0; /* [IE6 - IE11)不包括IE11 */
        /*background: #f00\0\9; /* [IE8  - IE11) 不包括IE11 */
        /*background: #f00/9; /* [IE8  - IE11) 不包括IE11 */
    }
    </style>
    <!--[if IE 8 ]>    
    <style> div{background-color: #f00;} </style>
    <![endif]-->
</head>
<body>
<div></div>

</body>
</html>
bubuko.com,布布扣

 

css Hack,用IE11模拟测试的,条件注释要找真IE去测,模拟的无效,布布扣,bubuko.com

css Hack,用IE11模拟测试的,条件注释要找真IE去测,模拟的无效

标签:c   style   class   blog   code   java   

原文地址:http://www.cnblogs.com/qiangspecial/p/3760811.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!