Style backgroundRepeat 属性
更多“自己尝试一下”的示例在下面。
描述
backgroundRepeat 属性设置或返回如何重复(平铺)背景图像。
语法
返回 backgroundRepeat 属性
object.style.backgroundRepeat
设置 backgroundRepeat 属性
object.style.backgroundRepeat = "repeat|repeat-x|repeat-y|no-repeat|initial|inherit"
属性值
值 | 描述 |
---|---|
repeat | 背景图像在垂直和水平方向上重复。这是默认值。 |
repeat-x | 背景图像仅在水平方向上重复。 |
repeat-y | 背景图像仅在垂直方向上重复。 |
no-repeat | 背景图像不重复。 |
initial | 将此属性设置为其默认值。 阅读关于 initial |
inherit | 从其父元素继承此属性。 阅读关于 inherit |
技术细节
默认值 | repeat |
---|---|
返回值 | 一个字符串,表示背景图像的重复方式。 |
CSS 版本 | CSS1 |
浏览器支持
backgroundRepeat
是 CSS1 (1996) 功能。
它在所有浏览器中都得到完全支持。
Chrome | Edge | Firefox | Safari | Opera | IE |
是 | 是 | 是 | 是 | 是 | 是 |
更多示例
示例
更改指定 DIV 元素的 backgroundRepeat 属性
document.getElementById("myDIV").style.backgroundRepeat = "repeat-x";
自己尝试一下 »
示例
设置背景图像在水平或垂直方向上重复
function repeatVer() {
document.body.style.backgroundRepeat = "repeat-y";
}
function repeatHor() {
document.body.style.backgroundRepeat = "repeat-x";
}
自己尝试一下 »