gpt4 book ai didi

css - 仅媒体屏幕未加载新背景

转载 作者:行者123 更新时间:2023-11-28 13:29:14 24 4
gpt4 key购买 nike

我有一个网站,我在其中使用 div 作为背景(反对将它放在正文中,因为我需要将它正确居中)这是网站,http://asystec.hailstormcommerce.com/

这是CSS:

@media only screen 
and (min-device-width : 320px)
and (max-device-width : 480px) {
.backgroundwrapper {
background-image: url('images/asystec-mobile-bg.jpg');
background-position:center 188px;
}

}

.backgroundwrapper {
background: #fff url('images/pageBgOld.jpg') no-repeat;
background-position:center 188px;
height:1903px;
width:1903px;

}

我试过清除浏览器上的缓存,但它肯定会加载 pageBgOld 图像而不是新图像。任何帮助都会很棒。

最佳答案

在您的主要样式之后编写媒体查询。像这样写:

.backgroundwrapper {
background: #fff url('images/pageBgOld.jpg') no-repeat;
background-position:center 188px;
height:1903px;
width:1903px;

}
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
.backgroundwrapper {
background-image: url('images/asystec-mobile-bg.jpg');
background-position:center 188px;
}

}

关于css - 仅媒体屏幕未加载新背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12474570/

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