可以使用 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;
}
HTML 背景图片设置:不拉伸、平铺、不重复

原文地址: https://www.cveoy.top/t/topic/oxxb 著作权归作者所有。请勿转载和采集!

免费AI点我,无需注册和登录