-1

我有一个网页,我希望应该有两个 css 文件我的网页是在 ipad 上的 safari 浏览器中打开的,它应该加载 css 一个,如果它在没有浏览器的情况下直接打开,它应该加载 css 两个。当你有网页书签时它有ipad 主屏幕上的图标,所以当我点击它时,它会打开没有地址栏的网页,比如 safari 浏览器,它会显示来自 botton 的空格,这在 safari 上使用地址栏在线时不会显示

     <link type="text/css" href="newstyle.css" media="only screen and (min-device-height:674px)and (min-device-width:1024px)  and (orientation:landscape)" rel="stylesheet"  />


      <link type="text/css" href="newstyle_1.css" media="only screen and (min-device-height:748px) and  (min-device-width:1024px)  and (orientation:landscape)" rel="stylesheet"/>
4

2 回答 2

0

请根据宽度使用这种方法,我们可以解决问题,我们正在使用这种方法

<link rel="stylesheet" media="screen and (max-width: 768x)" href="ipad.css" />

<link rel="stylesheet" media="screen and (max-width: 1024px)" href="desktop.css" />

<link rel="stylesheet"href="comon.css" />
于 2012-04-28T08:15:24.767 回答
0

为什么不将它们完全合并呢?节省您的时间、精力和 HTTP 请求。并且在您使用 CSS 压缩器时也可以使用它,从而节省下载时间和带宽。

于 2012-04-28T07:55:06.340 回答