下面的代码放置在之后,之前 相关代码说明: /* 背景为图片 */ background-image:url(/Images/Background.jpg); /* 背景为颜色 */ background-color: #CCCCCC; /* 背景图片垂直、水平均居中 */ background-position: center center; /* 背景图片不平铺 */ background-position: no-repeat; /* 背景图片同时在横向和纵向上平铺 */ background-position: repeat; /* 背景图片在横向上平铺 */ background-position: repeat-x; /* 背景图片在纵向上平铺 */ background-position: repeat-y; /* 背景图片在原图基础上重复,3为重复次数 */ background-repeat: repeat:3; /* 当内容高度大于图片高度时,背景图片的位置相对于viewport固定 */ background-attachment: fixed; /* 让背景图片基于容器大小伸缩 */ background-size: cover; |