HTML - DOM Style 对象 outlineWidth 属性



HTML DOM Style 对象的 **outlineWidth** 属性设置或返回元素的轮廓宽度。

语法

设置 outlineWidth 属性
object.style.outlineWidth= "thin | medium | thick | length | initial | inherit";
获取 outlineWidth 属性
object.style.outlineWidth;

属性值

描述
thin 指定细轮廓。
medium 默认值,指定中等轮廓。
thick 指定粗轮廓。
length 以 CSS 测量单位(如 px)指定轮廓宽度。
initial 用于将此属性设置为其默认值。
inherit 用于继承其父元素的属性。

返回值

返回一个字符串值,表示元素的轮廓宽度。

HTML DOM Style 对象“outlineWidth”属性示例

以下示例说明如何设置和获取轮廓宽度值。

设置 div 元素的轮廓宽度

以下示例将 div 元素的轮廓宽度设置为 thin、thick 和 10px。

<!DOCTYPE html>
<html>
<head>
    <title>
        HTML DOM Style Object outlineWidth Property
    </title>
    <style>
        #outline {
            border: 2px solid yellow;
            outline: medium solid #04af2f;
        }
    </style>
</head>
<body>
    <button onclick="fun()">Thin Outline</button>
    <button onclick="funtwo()">Thick Outline</button>
    <button onclick="funthree()">Set Width</button>
    <br><br><br>
    <div id="outline">
        Welcome to Tutorials Point...
    </div>
    <script>
        function fun() {
            document.getElementById("outline")
                .style.outlineWidth = "thin";
        }
        function funtwo() {
            document.getElementById("outline")
                .style.outlineWidth = "thick";
        }
        function funthree() {
            document.getElementById("outline")
                .style.outlineWidth = "10px";
        }
    </script>
</body>
</html>

获取 div 元素的轮廓宽度

以下示例获取 div 元素的轮廓宽度。

<!DOCTYPE html>
<html>
<head>
    <title>
        HTML DOM Style Object outlineWidth Property
    </title>
    <style>
        #outline {
            border: 2px solid yellow;
            outline: medium solid #04af2f;
        }
    </style>
</head>
<body>
    <button onclick="fun()">Thin Outline</button>
    <button onclick="funtwo()">Thick Outline</button>
    <button onclick="funthree()">Set Width</button>
    <br><br><br>
    <p id="result"></p>
    <div id="outline">
        Welcome to Tutorials Point...
    </div>    
    <script>
        function fun() {
            let x=document.getElementById("outline")
                .style.outlineWidth = "thin";
            document.getElementById("result")
                .innerHTML="Outline Width :" +x;
        }
        function funtwo() {
            let x=document.getElementById("outline")
                .style.outlineWidth = "thick";
            document.getElementById("result")
                .innerHTML="Outline Width :" +x;
        }
        function funthree() {
            let x=document.getElementById("outline")
                .style.outlineWidth = "10px";
            document.getElementById("result")
                .innerHTML="Outline Width :" +x;
        }
    </script>
</body>
</html>

支持的浏览器

属性 Chrome Edge Firefox Safari Opera
outlineWidth 是 1 是 12 是 1.5 是 1.2 是 7
html_dom_style_object_reference.htm
广告