gpt4 book ai didi

css - 图片在移动设备上没有变化

转载 作者:太空宇宙 更新时间:2023-11-03 17:43:31 24 4
gpt4 key购买 nike

我希望我用作背景的图像通过 css 媒体查询更改为较小的版本。

我不太清楚为什么它不能在移动设备上运行。

@media only screen and (min-width: 375px) and (max-width: 667px) and (orientation : landscape){

#slide1 {
background: url(../images/slides/mobiletest.jpg) center center no-repeat;
-webkit-background-size: 100% 100%;
-moz-background-size: cover;
background-size: 100% 100%;
background-attachment: fixed;
width: 100%;}}

最佳答案

这可能真的是一些特异性问题。您可以尝试在元素之前添加一个 html 选择器:

@media only screen and (min-width: 375px) and (max-width: 667px) and (orientation : landscape){

html #slide1 {
background: url(../images/slides/mobiletest.jpg) center center no-repeat;
-webkit-background-size: 100% 100%;
-moz-background-size: cover;
background-size: 100% 100%;
background-attachment: fixed;
width: 100%;
}
}

关于css - 图片在移动设备上没有变化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28687238/

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