gpt4 book ai didi

html - 后台移动支持

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

下面的代码在桌面上工作得很好。但是在手机上图像没有正确集中

<style>
html, body
{
margin: 0px;
padding: 0px;
height: 4000px; /* just an example */
}
</style>
<div style="
background-image: url('img/bg1.jpg');
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
background-size: contain;
width: 100%;
height: 100%;
z-index: 998;">
</div>

我希望它固定在屏幕中央。

最佳答案

我想这对你有用。

<style>
html, body
{
margin: 0px;
padding: 0px;
height: 100% !important; /* @nicfo advice, for working on mobiles */
}
</style>
<div style="
background-image: url('http://www.w3schools.com/images/w3schools.png');
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
background-size: 100% 100%;
background-size: contain;
width: 100%;
height: 100%;
z-index: 998;">
</div>

关于html - 后台移动支持,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34614350/

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