CSS background-origin属性指定背景的定位区域,即使用background-image属性指定的图像原点的位置。
下表总结了此属性的用法上下文和版本历史记录。
默认值: | padding-box |
---|---|
适用于: | 所有元素。它也适用于::first-letter和::first-line。 |
继承: | 没有 |
可动画制作: | 否。请参见 动画属性。 |
版本: | CSS3的新功能 |
JavaScript 语法: | object object.style.backgroundOrigin="content-box" |
该属性的语法如下:
background-origin: border-box | padding-box | content-box | initial | inherit
下面的示例演示了如何使用background-origin属性。
.box { width: 250px; height: 150px; padding: 10px; border: 6px dashed #333; background: url("images/sky.jpg") no-repeat; background-size: contain; background-origin: content-box; }测试看看‹/›
注:本background-origin如果值属性被忽略background-attachment属性指定为fixed。
下表描述了此属性的值。
值 | 描述 |
---|---|
border-box | 指定背景延伸到边框的外部边缘。边框下方绘制了背景。 |
padding-box | 指定背景延伸到填充的外部边缘。边框下方未绘制背景。这是默认值。 |
content-box | 指定仅在内容框内(剪切到)绘制背景。在边框和填充区域下方未绘制背景。 |
initial | 将此属性设置为其默认值。 |
inherit | 如果指定,则关联元素采用其父元素background-origin属性的计算值。 |
background-origin属性浏览器的兼容性,所有主流浏览器均支持该属性。
|
相关属性:background,background-attachment,background-color,background-image,background-clip,background-position,background-repeat,background-size。