CSS设置背景图平铺、不重复、居中
可以使用以下CSS代码来设置背景图的平铺、不重复、居中:
div {
background-image: url('your-image.jpg');
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
在上述代码中,'your-image.jpg'应替换为你想要设置为背景图的图片的路径。'background-repeat: no-repeat;'用于设置背景图不重复,'background-position: center;'用于将背景图居中,'background-size: cover;'用于自适应填充div的背景图。
请注意,为了使背景图居中,div的宽度和高度应该根据需要进行设置。
原文地址: https://www.cveoy.top/t/topic/pjbw 著作权归作者所有。请勿转载和采集!