ios系统和某些移动端background-attachment:fixed不兼容性,没有任何效果,大概是ios系统和某些移动端对background-attachment:fixed不兼容,可用伪元素:before的方法代替background-attachment:fixed,代码如下:
ps:想在哪个标签加背景,可以在它class后:before
.bg:before {
content: ' ';
position: fixed;
background: url(path/to/image) center 0 no-repeat;
z-index: -1;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-size: cover;
}
我是有底线的
扫描二维码手机查看该文章
文章引用:https://www.qinghuahulian.com/news/webzhishi/1431.html




