HTML DOM borderRightWidth 属性

定义和用法

borderRightWidth 属性设置元素的右边框的宽度。

语法:

  1. Object.style.borderRightWidth=thin|medium|thick|length

Possible Values

描述
thin 定义细的下边框。
medium 默认。定义中等的下边框。
thick 定义粗的下边框。
length 允许您自定义下边框的宽度。

实例

本例改变右边框的宽度:

  1. <html>
  2. <head>
  3. <style type="text/css">
  4. p
  5. {
  6. border: thin solid #FF0000
  7. }
  8. </style>
  9. <script type="text/javascript">
  10. function changeBorderWidth()
  11. {
  12. document.getElementById("p1").style.borderRightWidth="thick";
  13. }
  14. </script>
  15. </head>
  16. <body>
  17.  
  18. <input type="button" onclick="changeBorderWidth()"
  19. value="Change right border width" />
  20.  
  21. <p id="p1">This is a paragraph</p>
  22.  
  23. </body>
  24. </html>