gpt4 book ai didi

css - 针对 iphone/mobile/ipad 的媒体查询

转载 作者:太空宇宙 更新时间:2023-11-03 19:41:11 26 4
gpt4 key购买 nike

我正在使用媒体查询来定位 iphone/ipad/mobile。

我编写了以下媒体查询。

但我的问题是,如果我在移动设备“max-device-width : 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">

最佳答案

试试下面的媒体查询和元标记

/* For mobile : like samsung grand(480 * 800): */
@media screen and (max-width : 480px){}


/* For iphone: */
@media screen and (max-width : 320px){}


/* For ipad: */
@media screen and (max-width : 768px){}

此外。更改您的元标记:

<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width">

关于css - 针对 iphone/mobile/ipad 的媒体查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19157088/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com