0

嗨,如果用户正在访问我的移动设备网站,​​有人可以帮助我寻找一种将浏览器指向替代 CSS 样式表的方法吗?

我尝试使用以下代码,但它似乎对我不起作用。有没有其他方法可以用javascript或其他方式做到这一点?

如果有人能告诉我这样做的方法,我将不胜感激,因为我所做的一切都行不通。

谢谢

<link media="only screen and (max-device-width: 480px)"
href="iPhone.css" type="text/css" rel="stylesheet" />
4

1 回答 1

0

试试这个(取自Perishable Press):

<link rel="stylesheet" href="http://domain.tld/screen.css" type="text/css" media="Screen" />
<link rel="stylesheet" href="http://domain.tld/mobile.css" type="text/css" media="handheld" />

media="screen"_ media="screen"_media="handheld"

于 2013-02-18T23:07:47.097 回答