首页 > 代码库 > css Hack,用IE11模拟测试的,条件注释要找真IE去测,模拟的无效
css Hack,用IE11模拟测试的,条件注释要找真IE去测,模拟的无效
<!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>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。