1

这是我的CSS:

.lt-ie8{
    body{
        display:none!important;
    }
}

这是我的 HTML:

<!--[if lt IE 7]>      <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]>         <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]>         <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>

CSS 似乎没有正确定位 IE7,有谁知道我哪里出错了?

4

2 回答 2

1

这对我来说非常有效。

<html>
<head>
    <title></title>
    <style type="text/css">
        .test{
            background: green;
            height: 100px;
            width: 100px;
        }
    </style>
    <!--[if lt IE 7]>      <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
    <!--[if IE 7]>         <html class="no-js lt-ie9 lt-ie8">
        <style type='text/css'>
            .test{
                background: red;
            }
        </style>
    <![endif]-->
    <!--[if IE 8]>         <html class="no-js lt-ie9"> <![endif]-->
    <!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->

</head>
<body>
    <div class="test"></div>
</body>
</html>
于 2013-05-08T16:37:35.613 回答
0

IE7 不会让你隐藏 body 标签。一个解决方案是创建一个包装器 div 并隐藏它。我以前遇到过这种情况,但我不确定原因。

<html>
<!--[if IE 7]>         <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]>         <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
    <style>
        .lt-ie8 div{ display: none !important;}
        body, html{width: 100%; height: 100%;}
        div {background-color: red; width: 100%; height: 100%;}
    </style>
</head>
<body>
<div></div>
</body>
</html>
于 2013-05-08T16:59:47.987 回答