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