Style position 屬性
Style 對(duì)象定義和用法
position 屬性設(shè)置或返回用于元素定位方法的類型(static(靜態(tài)的)、relative(相對(duì)的)、absolute(絕對(duì)的)或 fixed(固定的))。
語(yǔ)法
設(shè)置 position 屬性:
Object.style.position="static|absolute|fixed|relative|inherit"
返回 position 屬性:
Object.style.position
值 | 描述 |
---|---|
static | 默認(rèn)。位置設(shè)置為 static 的元素,它始終會(huì)處于頁(yè)面流給予的位置(static 元素會(huì)忽略任何 top、bottom、left 或 right 聲明)。 |
absolute | 位置設(shè)置為 absolute 的元素,可定位于相對(duì)于第一個(gè)已定位(非靜態(tài)的)的包含它的元素的指定坐標(biāo)。此元素的位置可通過(guò) "left"、"top"、"right" 以及 "bottom" 屬性來(lái)規(guī)定。 |
fixed | 位置被設(shè)置為 fixed 的元素,可定位于相對(duì)于瀏覽器窗口的指定坐標(biāo)。此元素的位置可通過(guò) "left"、"top"、"right" 以及 "bottom" 屬性來(lái)規(guī)定。不論窗口滾動(dòng)與否,元素都會(huì)留在那個(gè)位置。工作于 IE7(strict 模式)。 |
relative | 位置被設(shè)置為 relative 的元素,可將其定位于相對(duì)于其正常位置的地方,因此 "left:20" 會(huì)將元素移至元素正常位置左邊 20 個(gè)像素的位置。 |
inherit | position 屬性的值從父元素繼承。 |
瀏覽器支持
所有主要瀏覽器都支持 position 屬性。
注意:IE7 及更早的版本不支持 "inherit" 值。IE8 只有規(guī)定了 !DOCTYPE 才支持 "inherit"。IE9 支持 "inherit"。
實(shí)例
實(shí)例
把元素的 position(位置)從 static(靜態(tài),默認(rèn))改為 absolute(絕對(duì)):
<html>
<head>
<script>
function displayResult()
{
document.getElementById("b1").style.position="absolute";
document.getElementById("b1").style.top="100px";
document.getElementById("b1").style.left="100px";
}
</script>
</head>
<body>
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
<input type="button" id="b1" onclick="displayResult()" value="Position me">
</body>
</html>
<head>
<script>
function displayResult()
{
document.getElementById("b1").style.position="absolute";
document.getElementById("b1").style.top="100px";
document.getElementById("b1").style.left="100px";
}
</script>
</head>
<body>
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
<input type="button" id="b1" onclick="displayResult()" value="Position me">
</body>
</html>
嘗試一下 ?
Style 對(duì)象
更多建議: