HTML DOM right 属性

定义和用法

right 属性设置定位元素右外边距边界与其包含块右边界之间的偏移。

语法:

  1. Object.style.right=auto|%|length

可能的值

描述
auto 默认。通过浏览器来计算右侧的位置。
% 设置元素的右边到最近一个具有定位设置父元素的右边缘的百分比位置。
length 使用 px、cm 等单位设置元素的右边到最近一个具有定位设置父元素的右边缘的位置。可使用负值。

提示和注释

注释:如果 "position" 属性的值为 "static",那么设置 "right" 属性不会产生任何效果。

实例

本例对按钮的左边进行设置:

  1. <html>
  2. <head>
  3. <style type="text/css">
  4. input
  5. {
  6. position:absolute;
  7. }
  8. </style>
  9. <script type="text/javascript">
  10. function setRightEdge()
  11. {
  12. document.getElementById("b1").style.right="100px";
  13. }
  14. </script>
  15. </head>
  16. <body>
  17.  
  18. <input type="button" id="b1" onclick="setRightEdge()"
  19. value="Set right edge to 100 px" />
  20.  
  21. </body>
  22. </html>