这一定是非常简单的事情,而且它正在工作。我正在使用 css3 媒体调用来构建响应式网站,但我一生都无法理解为什么以下内容不再起作用。
这里的页面代码:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Untitled Document</title>
<link href="assets/css/layout.css" rel="stylesheet" type="text/css">
</head>
<body>
</body>
</html>
和 layout.css:
body {
background-color:#FFF;
}
@media screen and max-width 980px {
body {
background-color:aqua;
}
}
@media screen and max-width 700px {
body {
background-color:#ff4500;
}
}
@media screen and max-width 480px {
body {
background-color:#ffd700;
}
}
那有什么问题?
谢谢。