Style outlineWidth 属性
Style 对象的 outlineWidth 属性设置或返回元素周围的轮廓的宽度
轮廓是围绕元素周围的线条。它是显示在元素的 margin 的周围。但是,它与 border 属性不同
轮廓不是元素尺寸的一部分,因此元素的 width 和 height 属性不包含轮廓的宽度
语法
设置 outlineWidth 属性
object.style.outlineWidth="thin|medium|thick| length |inherit"
返回 outlineWidth 属性
object.style.outlineWidth
值说明
值 | 描述 |
---|---|
thin | 定义细的轮廓 |
medium | 默认。定义中等的轮廓 |
thick | 定义粗的轮廓 |
length | 使用 px、cm 等单位定义轮廓的宽度 |
inherit | 轮廓的宽度从父元素继承 |
浏览器支持
所有主要浏览器都支持 outlineWidth 属性
IE7 及更早的版本不支持 outlineWidth 属性
IE8 只有添加了 <!DOCTYPE html> 才支持 outlineWidth 属性
IE9 支持 outlineWidth 属性
范例
更改轮廓的宽度
<style> #ex1 { border:1px solid red; outline:green dotted thick; } </style> <script> function displayResult() { document.getElementById("ex1").style.outlineWidth="10px"; } </script> <div id="ex1">This is some text.</div> <br> <button type="button" onclick="displayResult()">Change outline width</button>