Style position 屬性
Style 對象定義和用法
position 屬性設置或返回用于元素定位方法的類型(static(靜態(tài)的)、relative(相對的)、absolute(絕對的)或 fixed(固定的))。
語法
設置 position 屬性:
Object.style.position="static|absolute|fixed|relative|inherit"
返回 position 屬性:
Object.style.position
值 | 描述 |
---|---|
static | 默認。位置設置為 static 的元素,它始終會處于頁面流給予的位置(static 元素會忽略任何 top、bottom、left 或 right 聲明)。 |
absolute | 位置設置為 absolute 的元素,可定位于相對于第一個已定位(非靜態(tài)的)的包含它的元素的指定坐標。此元素的位置可通過 "left"、"top"、"right" 以及 "bottom" 屬性來規(guī)定。 |
fixed | 位置被設置為 fixed 的元素,可定位于相對于瀏覽器窗口的指定坐標。此元素的位置可通過 "left"、"top"、"right" 以及 "bottom" 屬性來規(guī)定。不論窗口滾動與否,元素都會留在那個位置。工作于 IE7(strict 模式)。 |
relative | 位置被設置為 relative 的元素,可將其定位于相對于其正常位置的地方,因此 "left:20" 會將元素移至元素正常位置左邊 20 個像素的位置。 |
inherit | position 屬性的值從父元素繼承。 |
瀏覽器支持
所有主要瀏覽器都支持 position 屬性。
注意:IE7 及更早的版本不支持 "inherit" 值。IE8 只有規(guī)定了 !DOCTYPE 才支持 "inherit"。IE9 支持 "inherit"。
實例
實例
把元素的 position(位置)從 static(靜態(tài),默認)改為 absolute(絕對):
<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 對象
更多建議: