css设置body背景图片铺满全屏
可以使用如下的CSS代码将背景图片铺满整个body元素:
body {
background-image: url("your-image.jpg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
其中,background-image属性用于设置背景图片的路径;background-size: cover;用于将背景图片缩放至铺满整个body元素;background-position: center;用于将背景图片水平和垂直居中;background-repeat: no-repeat;用于禁止背景图片重复。
原文地址: http://www.cveoy.top/t/topic/bFTi 著作权归作者所有。请勿转载和采集!