<style>
body {
background-image: url(images/bg.jpg); /* 加载背景图 */
background-position: center center; /* 背景图垂直、水平均居中 */
background-repeat: no-repeat; /* 背景图不平铺 */
background-attachment: fixed; /* 当内容高度大于图片高度时,背景图像的位置相对于viewport固定 */
background-size: cover; /* 让背景图基于容器大小伸缩 */
}
</style>
body {
background-image: url(images/bg.jpg); /* 加载背景图 */
background-position: center center; /* 背景图垂直、水平均居中 */
background-repeat: no-repeat; /* 背景图不平铺 */
background-attachment: fixed; /* 当内容高度大于图片高度时,背景图像的位置相对于viewport固定 */
background-size: cover; /* 让背景图基于容器大小伸缩 */
}
</style>