CSS实现背景图片全屏自适应

body {
width: 100%;
height: 100%;
background-image: url(bg.jpg) no-repeat;
/* 背景图垂直、水平均居中 */
background-position: center center;
/* 当内容高度大于图片高度时,背景图像的位置相对于viewport固定 */
background-attachment: fixed;
/* 让背景图基于容器大小伸缩 */
background-size: cover;//或者background-size:100%;
/* 设置背景颜色,背景图加载过程中会显示背景色 */
background-color: #ccc;
}

你可能感兴趣的:(css,css3)