您还可以将背景附件设置为继承 inherit或滚动scroll。 将background-attachment设置为inherit时,它将从其父元素继承该值。
将背景附件设置为scoll时,背景图像将与其余内容一起滚动。
css
body { background-image: url("css_logo.png"); background-repeat: no-repeat; background-attachment: scroll; }
结果
0