天天看點

Style backgroundPosition 屬性

Style 對象

定義和用法

backgroundPosition 屬性設定或傳回元素的背景圖像的位置。

文法

設定 backgroundPosition 屬性:

Object.style.backgroundPosition="position"

傳回 backgroundPosition 屬性:

Object.style.backgroundPosition

提示:

backgroundPosition 屬性的預設值是:0% 0%。

描述

top left

top center

top right

center left

center center

center right

bottom left

bottom center

bottom right

如果僅指定一個關鍵字,其他值将是 "center"。
x% y% x 值表示水準位置,y 值表示垂直位置。左上角是 0% 0%。右下角是 100% 100%。如果僅指定一個值,其他值将是 50%。
xpos ypos x 值表示水準位置,y 值表示垂直位置。左上角是 0 0。機關可以是像素(0px 0px)或任何其他的 CSS 機關。如果僅指定一個值,其他值将是 50%。您可以混合使用 % 和機關。
inherit 背景位置屬性的設定從父元素繼承。

浏覽器支援

Style backgroundPosition 屬性
Style backgroundPosition 屬性
Style backgroundPosition 屬性
Style backgroundPosition 屬性
Style backgroundPosition 屬性

所有主要浏覽器都支援 backgroundPosition 屬性。

注意:

IE7 及更早的版本不支援 "inherit" 值。IE8 隻有規定了 !DOCTYPE 才支援 "inherit"。IE9 支援 "inherit"。

執行個體

更改背景圖像的位置:

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<title>菜鳥教程(runoob.com)</title>

<style>

div{

    background-image: url('img_tree.png');

    background-repeat: no-repeat;

    width: 400px;

    height: 400px;

    border: 1px solid #000000;

}

</style>

<script>

function displayResult(){

    document.getElementById("div1").style.backgroundPosition="center bottom";

</script>

</head>

<body>

<button type="button" onclick="displayResult()">修改背景圖像位置</button>

<br>

<div id="div1">

</div>

</body>

</html>

Style 對象