(实用)移动端背景图,铺满页面

小小的问题,往往使我们最容易疏忽的

.give-book {
    background: url("../images/bg-book.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-attachment: fixed;
}

background-attachment 属性设置背景图像是否固定或者随着页面的其余部分滚动

fixed 当页面的其余部分滚动时,背景图像不会移动。

background-repeat: no-repeat;  背景不平铺

background-size: 100% 100%; 设定背景图像的尺寸

 

你可能感兴趣的:(JavaScript)