检测移动设备,如果移动使用替代css样式表?

时间:2013-02-18 23:04:12

标签: php css

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

我尝试使用以下代码但它似乎并不适合我。有没有其他方式可以用javascript或其他方式做到这一点?

我真的很感激,如果有人能告诉我这样做的方式,因为我所做的一切都不起作用。

感谢

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

1 个答案:

答案 0 :(得分: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"划一条线的原因是解决基于Windows的移动设备的问题,该问题将media="screen"超过media="handheld"