background-size:100% 100%把背景图进行横向和纵向的拉伸,图片比例随之改变,可能导致图像失真

background-size: cover把背景图扩展至足够大,直至完全覆盖背景区域,图片比例保持不变且不会失真,但某些部分被切割无法显示完整背景图像

一般和如下语法连用

background-image: url(../images/1.png);
background-position-x: center;
background-position-y: center;
background-size: cover;
background-repeat-x: no-repeat;
background-repeat-y: no-repeat;
background-attachment: fixed;

或者这样

background: url("../images/1.png") no-repeat center fixed;