在index.html中添加了这一行:
<link href="css/style.css" media="all "rel="stylesheet" type="text/css" />
Run Code Online (Sandbox Code Playgroud)
这是我的媒体查询CSS:
/* Smartphones (portrait and landscape) ----------- */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
#mapArea .white span {
width: 100px;
}
}
Run Code Online (Sandbox Code Playgroud)
但是当我在浏览器中检查它时,不要工作.我的问题是什么?我该如何解决?
(测试了所有现代浏览器)