html 中 css 中 使背景照片覆盖全屏
body,html{
background: url(../img/index.png);
background-repeat: no-repeat;
background-size: 100% 100%;
background-attachment: fixed;
}
如何使背景照片覆盖全屏不会随屏幕滚动
阅读 54
2022-02-26
body,html{
background: url(../img/index.png);
background-repeat: no-repeat;
background-size: 100% 100%;
background-attachment: fixed;
}
相关推荐
精彩评论(0)