background-attachment属性设置背景图像是固定的还是与页面的其余部分一起滚动。
即使元素具有滚动机制,"固定"背景也不随元素移动。
css
body { background-image: url("css_logo.png"); background-repeat: no-repeat; background-attachment: fixed; }
结果
0