【发布时间】:2013-12-08 15:12:51
【问题描述】:
在任何主要的 5 个最新浏览器中都可以正常工作,但在任何移动设备上都不能正常工作,不知道为什么。
这是我的代码
/* Desktop */
@import url("desktop.css");
/* Small Phone */
@import url("smallMobile.css") only screen and (max-width:320px);
/* Large Phone and small Tablet */
@import url("largeMobile-smallTablet.css") only screen and (min-width:321px) and (max-width:600px);
/* 平板电脑和小型台式机*/ @import url("tablet-smallDesktop.css") 仅屏幕和 (min-width:601px) 和 (max-width:1120px);
【问题讨论】:
标签: html css mobile media-queries