HTML DOM position 属性

定义和用法

position 属性把元素放置到一个静态的、相对的、绝对的、或固定的位置中。

语法:

  1. Object.style.position=static|relative|absolute|fixed

可能的值

描述
static 默认。位置设置为 static 的元素,它始终会处于页面流给予的位置(static 元素会忽略任何 top、bottom、left 或 right 声明)。
relative 位置被设置为 relative 的元素,可将其移至相对于其正常位置的地方,因此 "left:20" 会将元素移至元素正常位置左边 20 个像素的位置。
absolute 位置设置为 absolute 的元素,可定位于相对于包含它的元素的指定坐标。此元素的位置可通过 "left"、"top"、"right" 以及 "bottom" 属性来规定。
fixed 位置被设置为 fixed 的元素,可定位于相对于浏览器窗口的指定坐标。此元素的位置可通过 "left"、"top"、"right" 以及"bottom" 属性来规定。不论窗口滚动与否,元素都会留在那个位置。工作于 IE7(strict 模式)。

实例

本例把元素位置由相对改为绝对:

  1. <html>
  2. <head>
  3. <style type="text/css">
  4. input
  5. {
  6. position:relative;
  7. }
  8. </style>
  9. <script type="text/javascript">
  10. function setPositionAbsolute()
  11. {
  12. document.getElementById("b1").style.position="absolute";
  13. document.getElementById("b1").style.top="10px";
  14. }
  15. </script>
  16. </head>
  17. <body>
  18.  
  19. <p>This is an example paragraph</p>
  20. <p>This is an example paragraph</p>
  21.  
  22. <input type="button" id="b1" onclick="setPositionAbsolute()"
  23. value="Set button position to be absolute" />
  24.  
  25. </body>
  26. </html>