由于移动设备的Safari浏览器(iPhone和iPad)并不完全支持Tahoma字体,因此只想为iPhone和iPad设置Arial字体。那么如何才能为iPhone和iPad设置字体类型Arial,而其他操作系统将使用Tahoma字体。
请帮帮我
答案 0 :(得分:0)
定位特定样式表iPad和iPhone请将此代码放在<head>
标记中:
<!--[if !IE]>-->
<link type="text/css" rel="stylesheet" media="only screen and (max-device-width: 480px)" href="http://example.com/iPhone.css" />
<link type="text/css" rel="stylesheet" media="only screen and (min-device-width: 768px) and (max-device-width: 1024px)" href="http://example.com/iPad.css" />
<!--<![endif]-->