您已在css3媒体查询下方添加了此CSS,而此css3媒体规则不支持IE8及以下浏览器,因此它不应用其块中包含的CSS。
/* Minimum width of 600 pixels. */
@media screen and (min-width: 800px) {
.widget-area, #secondary{
float: right;
width: 210px;
font-family: Georgia, "Times New Roman", Times, serif;
padding: 0 15px 0 15px;
border-bottom: 1px solid #cacaca;
border-top: 1px solid #cacaca;
background-color: #efefef;
margin-top: 45px; }
}
要使其工作,只需在该媒体查询块之外声明此css规则,如下所示。
/* Minimum width of 600 pixels. */
@media screen and (min-width: 800px) {
}
.widget-area, #secondary{
float: right;
width: 210px;
font-family: Georgia, "Times New Roman", Times, serif;
padding: 0 15px 0 15px;
border-bottom: 1px solid #cacaca;
border-top: 1px solid #cacaca;
background-color: #efefef;
margin-top: 45px; }