一、background-repeat属性默认值
在不设置background-repeat属性时,它的默认值为repeat。它表示背景图片将会重复显示,当图片的宽度或高度小于元素的宽度或高度时,背景图片将自动重复显示,覆盖整个元素。
background-image: url("example.png"); background-repeat: repeat;
二、background-clip属性
background-clip属性用于指定背景图片的裁剪区域。它的默认值是border-box,表示背景图片会显示到边框边缘为止。如果将其值设置为padding-box,背景图片会显示到内边距边缘。如果将其设置为content-box,则背景图片仅显示在内容区域中。
background-image: url("example.png"); background-repeat: repeat; background-clip: border-box;
三、background-repeat相关属性
1、background-repeat: no-repeat
当设置background-repeat属性为no-repeat时,背景图片不会自动重复显示,只会显示一次。
background-image: url("example.png"); background-repeat: no-repeat;
2、background-repeat: repeat-x
当设置background-repeat属性为repeat-x时,背景图片只在水平方向上自动重复显示,垂直方向上不会重复。
background-image: url("example.png"); background-repeat: repeat-x;
3、background-repeat: repeat-y
当设置background-repeat属性为repeat-y时,背景图片只在垂直方向上重复显示,水平方向上不会重复。
background-image: url("example.png"); background-repeat: repeat-y;
4、background-repeat: space
当设置background-repeat属性为space时,背景图片将在水平和垂直方向上重复显示。如果元素的大小大于背景图片的大小,将会自动计算图片的间距,使图片在元素中均匀分布。
background-image: url("example.png"); background-repeat: space;
5、background-repeat: round
当设置background-repeat属性为round时,背景图片将在水平和垂直方向上重复显示。如果元素的大小大于背景图片的大小,将会自动调整图片的大小和间距,让图片均匀分布并完全填充整个元素。
background-image: url("example.png"); background-repeat: round;