css background-repeat 属性用于设置如何平铺对象的 background-image 属性
默认情况下,重复 background-image 的垂直和水平方向
background-position 属性设置背景图像位置,如果指定的位置是没有任何背景,图像总是放在元素的左上角
默认值 | repeat |
---|---|
继承 | no |
版本 | CSS1 |
JavaScript 语法 | object.style.backgroundRepeat="repeat-y" |
IE8 以及更早版本的浏览器不支持多个背景图像在一个元素
IE7 和更早的版本不支持"inherit(继承)"的值
IE8 需要定义 <!DOCTYPE html>
IE9 支持 "inherit(继承)"
background-repeat: repeat|repeat-x|repeat-y|no-repeat|inherit;
值 | 说明 |
---|---|
repeat | 背景图像将向垂直和水平方向重复。这是默认 |
repeat-x | 只有水平位置会重复背景图像 |
repeat-y | 只有垂直位置会重复背景图像 |
no-repeat | background-image不会重复 |
inherit | 指定background-repea属性设置应该从父元素继承 |
只有垂直方向重复 background-image
body {
background-image:url('/static/i/css/paper.gif');
background-repeat:repeat-y;
}