gpt4 book ai didi

html - 在手机上覆盖背景大小

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

我的网站有问题。图片在桌面上看起来很棒,但在我的手机上看起来很糟糕,因为它放大了。

我该如何解决这个问题?它不适用于

background-size:cover;

带背景的div有两个类

.content{
color: white;
font-family: "Another Typewriter";
width:100%; height:1000px;
font-size: 300%;
padding-left: 15%;
padding-right: 15%;
padding-top: 10%;
text-align: center;
background-size: cover;
}

.parallax{
height: 100%;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
#xyz{background-image: url(URLtoimage);}

分区容器:

    <div id="xyz" class="parallax content">
<legend class="text-center content-headline">XYZ</legend>
Some text
</div>

最佳答案

我如何假设您正在使用 background-attachment: fixed; ,它不能在许多移动浏览器上工作,您必须使用媒体查询在小屏幕滚动时更改它。

.parallax{
height: 100%;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}

@media screen and (max-width: 600px) {
.parallax {
background-attachment: scroll;
}
}

关于html - 在手机上覆盖背景大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43574854/

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