有人知道如何通过媒体查询来定位三星 Galaxy S3 吗?
目前我使用:
iPad
<link rel="stylesheet" media="all and (device-width: 768px)" href="css/device-768.css"/>
其他平板设备
<link rel="stylesheet" media="all and (max-device-width: 767px) and (min-device-width: 641px)" href="css/device-max767.css"/>
电话(S3 没有使用这个 - 不知道为什么)
<link rel="stylesheet" media="all and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 1)" href="css/phones.css"/>
我也测试过
<link rel="stylesheet" media="all and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2)" href="css/phones.css"/>
但它没有工作......