我的页面开头如下
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Database Reports</title>
<link href='http://fonts.googleapis.com/css?family=Oxygen:400,300' rel='stylesheet' type='text/css'>
<link href='css/style.css' rel='stylesheet' type='text/css'>
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<!--[if (gte IE 6)&(lte IE 8)]>
<script src="js/selectivizr-min.js"></script>
<![endif]-->
</head>
然后在体内我有几个 DIV
<div class="left"></div>
...
<div class="left"></div>
我的CSS如下
.left {
width: 30%;
float: left;
margin: 5px;
}
.left:nth-child(4) {
clear: both;
}
@media screen and (max-width: 1024px) {
.left {
width: 40%;
}
.left:nth-child(4) {
clear: none;
}
.left:nth-child(3) {
clear: both;
}
}
@media screen and (max-width: 800px) {
.left {
width: 80%;
}
.left:nth-child(4), .left:nth-child(3) {
clear: none;
}
.left:nth-child(2) {
clear: both;
}
}
在 Firefox 和 Chrome 中,一切正常。在全分辨率下,有 3 列然后是中断,3 列然后是中断等
当浏览器调整大小(更小)时,有 2 列,中断 2 列,中断等。
我有 IE8,如果我关闭兼容模式,则有 3 列,然后是中断(如上所述),但是当我调整浏览器大小时,什么也没有发生。它始终保持在 3 列。
当我重新打开兼容模式(公司中的大多数用户都会有这个)或使用 IE7 时,没有发生中断或任何响应。
任何建议/帮助将不胜感激