HTML - DOM Style 对象 backgroundClip 属性



HTML DOM Style 对象的 **backgroundClip** 属性设置或返回背景的绘制区域。

语法

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

设置 backgroundClip 属性
object.style.backgroundClip= "border-box | padding-box | content-box | initial | inherit" ;
获取 backgroundClip 属性
object.style.backgroundClip;

属性值

描述
border-box 这是默认值,将背景剪裁到盒子的边框。
padding-box 它将背景剪裁到盒子的填充。
content-box 它将背景剪裁到盒子的内容。
initial 用于将此属性设置为其默认值。
inherit 用于继承其父元素的属性。

返回值

它返回一个字符串值,表示元素的 background-clip 属性。

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

以下示例说明了 backgroundClip 属性,以使用不同的属性值指定绘制区域。

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object backgroundClip Property
    </title>
    <style>
        #clip {
            width: 400px;
            height: 300px;
            padding: 150px;
            background-color: #04af2f;
            background-clip: border-box;
            color: white;
            border: 3px dotted black;
        }
    </style>
</head>
<body>
    <p>
        Click to try different background clipping.
    </p>
    <button onclick="content()">Content Clip</button>
    <button onclick="border()">Border Clip</button>
    <button onclick="padding()">Padding Clip</button>
    <div id="clip">Here is some random text to bore you...</div>
    <script>
        function content() {
            document.getElementById("clip")
            .style.backgroundClip = "content-box";
        }
        function border() {
            document.getElementById("clip")
            .style.backgroundClip = "border-box";
        }
        function padding() {
            document.getElementById("clip")
            .style.backgroundClip = "padding-box";
        }
    </script>
</body>
</html>

支持的浏览器

属性 Chrome Edge Firefox Safari Opera
backgroundClip 是 1 是 12 是 4 是 5 是 10.5
html_dom_style_object_reference.htm
广告