HTML DOM outline 属性

定义和用法

outline 属性在一个声明中设置所有轮廓属性。

语法:

  1. Object.style.outline = outlineWidth outlineStyle outlineColor

可能的值

描述
outlineWidth 设置轮廓的宽度。 - thin - medium - thick - length
outlineStyle 设置轮廓的样式。 - none - hidden - dotted - dashed - solid - double - groove - ridge - inset - outset
outlineColor 设置轮廓的颜色。 - color-name - color-rgb - color-hex - transparent

实例

下面的例子改变段落周围的轮廓:

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