HTML - DOM样式对象 borderImageOutset 属性



HTML DOM 样式对象 **borderImageOutset** 属性指定边框图像区域超出边框框的程度。

语法

以下是获取或设置 borderImageOutset 属性的语法。

设置 borderImageOutset 属性
object.style.borderImageOutset= "length | number | initial | inherit";
获取 borderImageOutset 属性
object.style.borderImageOutset;

属性值

描述
长度 (length) 它指定图像从边框框延伸的距离。它最多接受 4 个值,每个值对应一个边。如果省略第四个值,则其值将与第二个值相同;如果省略第三个值,则其值将与第一个值相同;如果省略第二个值,则其值将与第一个值相同。
数字 (number) 它指定边框宽度的倍数。它接受十进制值。
初始值 (initial) 用于将此属性设置为其默认值。
继承 (inherit) 用于继承其父元素的属性。

返回值

它返回一个字符串值,表示元素的 border image outset 属性。

HTML DOM 样式对象“borderImageOutset”属性的示例

以下示例演示了如何为每一侧添加和设置边框图像突出。

添加边框图像突出

以下示例添加了边框图像突出。

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object borderImageOutset Property
    </title>
    <style>
        #outset {
            border: 20px solid transparent;
            margin: 20px;
            border-image: url("/tensorflow/images/tensorflow.jpg") 30 round;
            border-image-outset: 5px;
            background-color: #04af2f;
        }
    </style>
</head>
<body>
    <p>Change Outset</p>
    <button onclick="fun()">
        Change Border Outset
    </button>
    <br><br><br>
    <p id="outset">
        This is a sample paragraph containing some text. This
        paragraph is created only for the sake of this example.
    </p>
    <script>
        function fun() {
            document.getElementById("outset")
                .style.borderImageOutset = "20px";
        }
    </script>
</body>
</html>

为每一侧设置边框图像突出

以下示例根据单击的按钮为每一侧设置边框图像突出。

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object borderImageOutset Property
    </title>
    <style>
        #outset {
            border: 20px solid transparent;
            margin: 20px;
            border-image: url("/tensorflow/images/tensorflow.jpg") 30 round;
            border-image-outset: 5px;
            background-color: #04af2f;
        }
    </style>
</head>
<body>
    <p>Change Outset</p>
    <button onclick="fun()">Change</button>
    <button onclick="funTwo()">Two</button>
    <button onclick="funThree()">Three</button>
    <button onclick="funFour()">Four</button>
    <br><br><br>
    <p id="outset">
        This is a sample paragraph containing some text. This
        paragraph is created only for the sake of this example.
    </p>
    <script>
        function fun() {
            document.getElementById("outset")
                .style.borderImageOutset = "20px";
        }
        function funTwo() {
            document.getElementById("outset")
                .style.borderImageOutset = "20px 10px";
        }
        function funThree() {
            document.getElementById("outset")
                .style.borderImageOutset = "20px 10px 30px";
        }
        function funFour() {
            document.getElementById("outset")
                .style.borderImageOutset = "20px 10px 30px 40px";
        }
    </script>
</body>
</html>

使用“数字”设置边框图像突出

以下示例使用 number 属性值(接受十进制数)设置边框图像突出。

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object borderImageOutset Property
    </title>
    <style>
        #outset {
            border: 20px solid transparent;
            margin: 20px;
            border-image: url("/tensorflow/images/tensorflow.jpg") 30 round;
            border-image-outset: 5px;
            background-color: #04af2f;
        }
    </style>
</head>
<body>
    <p>Change Outset</p>
    <button onclick="fun()">Change</button>
    <br><br><br>
    <p id="outset">
        This is a sample paragraph containing some text. This
        paragraph is created only for the sake of this example.
    </p>
    <script>
        function fun() {
            document.getElementById("outset")
                .style.borderImageOutset = "2.3";
        }
    </script>
</body>
</html>

支持的浏览器

属性 Chrome Edge Firefox Safari Opera
borderImageOutset 是 15 是 12 是 11 是 6 是 15
html_dom_style_object_reference.htm
广告