HTML DOM Style backgroundRepeat 屬性

2018-12-30 15:27 更新

Style backgroundRepeat 屬性

Style 對象參考手冊 Style 對象

定義和用法

backgroundRepeat 屬性設(shè)置或返回如何重復(fù)背景圖像。

語法

設(shè)置 backgroundRepeat 屬性:

Object.style.backgroundRepeat="repeat|repeat-x|repeat-y|no-repeat|inherit"

返回 backgroundRepeat 屬性:

Object.style.backgroundRepeat

描述
repeat默認。垂直和水平方向重復(fù)背景圖像。
repeat-x水平方向重復(fù)背景圖像。
repeat-y垂直方向重復(fù)背景圖像。
no-repeat不重復(fù)背景圖像。
inheritbackground-repeat 屬性的設(shè)置從父元素繼承。


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要瀏覽器都支持 backgroundRepeat 屬性。

注意:IE7 及更早的版本不支持 "inherit" 值。IE8 只有規(guī)定了 !DOCTYPE 才支持 "inherit"。IE9 支持 "inherit"。


實例

實例

設(shè)置背景圖像為垂直方向重復(fù):

<html>
<head>
<style type="text/css">
body
{
background:#f3f3f3 url('img_tree.png');
}
</style>
<script>
function displayResult()
{
document.body.style.backgroundRepeat="repeat-y";
}
</script>
</head>
<body>

<button type="button" onclick="displayResult()">Repeat vertically</button>
<br>

<h1>Hello W3Cschool!</h1>
<p>這是一個段落。</p>

</body>
</html>

嘗試一下 ?


Style 對象參考手冊 Style 對象
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號