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/oxxb 著作权归作者所有。请勿转载和采集!