不同浏览器的支持似乎不同..
检查链接
Firefox:黑底白字。
Opera、Chrome、IE9:蓝底黑字。
哪个是正确的,我将如何使其保持一致?
编码
@media screen and (min-width: 480px) {
body{
background-color:#6aa6cc;
color:#000;
}
@media screen and (min-width: 768px) {
body{
background-color:#000;
color:#fff;
}
}
}
</p>
有趣的是,在条件中嵌套媒体查询@import
似乎确实有效。
例如:
索引.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Media test</title>
<link rel="stylesheet" type="text/css" href="importer.css" />
</head>
<body>
<h1>Why is this not consistent.</h1>
</body>
</html>
进口商.css
@import url(media.css) screen and (min-width: 480px);
媒体.css
body {
background-color: #6aa6cc;
color: #000;
}
@media screen and (min-width:768px) {
body {
background-color: #000;
color: #fff;
}
}