HTML - DOM Style 对象 borderImageSource 属性



HTML DOM Style 对象 **borderImageSource** 属性用于设置或返回用作元素边框图像的图像源。

语法

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

设置 borderImageSource 属性
object.style.borderImageSource= "none | image | initial | inherit";
获取 borderImageSource 属性
object.style.borderImageSource;

属性值

描述
none 这是默认值,表示不使用边框图像。如果指定了边框样式,则将使用边框样式。
image 它表示用作边框图像的图像路径。
initial 用于将此属性设置为其默认值。
inherit 用于继承其父元素的属性。

返回值

它返回一个字符串值,表示元素的边框图像重复源。

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

在以下示例中,我们使用 borderImageSource 属性添加了一个边框图像。

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object borderImageSource Property
    </title>
    <style>
        #source {
            border: 20px solid transparent;
            margin: 20px;
            border-image: 30 round;
        }
    </style>
</head>
<body>
    <p>Click to add image</p>
    <button onclick="fun()">Add</button>
    <br><br><br>
    <p id="source">
        This is a sample paragraph containing some 
        text. This paragraph is created only for example.
    </p>
    <p id="ex"></p>
    <script>
        function fun() {
            document.getElementById("source")
                .style.borderImageSource = 
                    "url(/images/blockchain.png)";
            document.getElementById("ex").innerHTML=x;
        }
    </script>
</body>
</html>

支持的浏览器

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