【2023.1.12】HTML移动端背景图自适应CSS
.bg {
width:100vw;
height:100vh;
padding: 0;
margin: 0;
background-attachment: fixed;
-webkit-background-attachment: fixed;
background: url("bg.jpg") no-repeat;
background-size: 100% 100%;
-webkit-background-size: 100% 100%;
}
该文章介绍了如何使用CSS实现HTML移动端背景图的自适应效果,通过设置`width:100vw`,`height:100vh`,`background-size:100%100%`以及`background-attachment:fixed`等属性,确保背景图在不同设备上都能全屏且不失真地展示。
3291

被折叠的 条评论
为什么被折叠?



