我正在使用媒体查询来定位 iphone/ipad/mobile。
我写了以下媒体查询。
但我的问题是,如果我在移动“最大设备宽度:480px”的媒体查询中编写 css,它也将适用于 iphone。
我做错了吗?
For mobile : like samsung grand(480 * 800):
@media only screen
and (max-device-width : 480px)
{
}
For iphone:
@media only screen
and (max-device-width : 320px)
{
}
For ipad:
@media screen and (min-width:760px)
{
}
还添加了元标记:
<meta name="viewport" content="user-scalable=no,initial-scale=1">