gpt4 book ai didi

iphone - CSS 媒体查询 - 无法使其正常工作

转载 作者:太空宇宙 更新时间:2023-11-04 04:25:01 26 4
gpt4 key购买 nike

我有以下 CSS,包括针对 iphone 用户的媒体查询,但似乎不起作用:

body
{
background: url('background.png') no-repeat center center fixed;
background-size:100%;
}

#tab
{
width:30%;
height:60%;
position:fixed;
background: url('tab.png') no-repeat center center fixed;
background-size:33%;
top:20%;
left:35%;
opacity:0.7;
}

@media only screen and (max-device-width: 480px)
{
body
{
background:#1589FF;
}

#tab
{
width:30%;
height:60%;
position:fixed;
background: url('tab.png') no-repeat center center fixed;
background-size:33%;
top:20%;
left:35%;
}
}

正常的 CSS 工作正常,但当切换到 iphone 时设计不会改变。谁能建议为什么上面的媒体查询似乎不起作用?我错过了什么吗?

最佳答案

改为:

@media only screen and (max-device-width: 480px) 

尝试:

@media (max-width: 480px)

OR

@media only screen and (max-width: 480px)

关于iphone - CSS 媒体查询 - 无法使其正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18444692/

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