我为移动设备创建了一个样式表。我用这个加载它:
<link rel="stylesheet" media="handheld, screen and (max-width: 650px)" href="/mobile.css?t=<?php echo rand(); ?>" />
在那个文件里面我有:
@media handheld, screen and (max-width: 650px) {
-- Styles here
}
@media handheld, screen and (max-width: 446px) {
-- Styles here
}
当我调整浏览器大小时它可以工作,但出于某种原因,至少在 android 上我看到了正常的网络,知道吗?