设置html背景图片不拉伸平铺不重复
可以使用CSS的background-size和background-repeat属性来设置背景图片不拉伸,平铺且不重复。
设置背景图片不拉伸:
background-size: cover;
设置背景图片平铺且不重复:
background-repeat: no-repeat; background-position: center center;
完整代码示例:
body { background-image: url('background.jpg'); background-size: cover; background-repeat: no-repeat; background-position: center center; }
原文地址: https://www.cveoy.top/t/topic/gHQN 著作权归作者所有。请勿转载和采集!