HTML - DOM样式对象backgroundOrigin属性



HTML DOM 样式对象**backgroundOrigin**属性设置或返回背景图像相对于填充、边框和内容的相对位置。

语法

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

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

属性值

描述
padding-box 这是默认值,它将背景图像相对于填充框的左上角定位。
border-box 它将背景图像相对于边框框的左上角定位。
content-box 它将背景图像相对于元素的内容框定位。
initial 用于将此属性设置为其默认值。
inherit 用于继承其父元素的属性。

返回值

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

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

以下示例说明了 backgroundOrigin 属性的不同属性值。

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object backgroundClip Property
    </title>
    <style>
        #origin {
            width: 400px;
            height: 300px;
            padding: 150px;
            border: 1px solid black;
            background: url('/html/images/logo.png') no-repeat;
        }
    </style>
</head>
<body>
    <p>
        Click to try different background image positioning..
    </p>
    <button onclick="content()">Content</button>
    <button onclick="padding()">Padding</button>
    <button onclick="border()">Border</button>
    <div id="origin">Here is some random text to bore you...
        HTML DOM Style Object backgroundClip property 
        sets or returns the painting area of the background.
    </div>
    <script>
        function content() {
            document.getElementById("origin")
            .style.backgroundOrigin = "content-box";
        }
        function padding() {
            document.getElementById("origin")
            .style.backgroundOrigin = "padding-box";
        }
        function border() {
            document.getElementById("origin")
            .style.backgroundOrigin = "border-box";
        }
    </script>
</body>
</html>

支持的浏览器

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