目录

CSS background-clip 属性


示例

指定背景应在元素内延伸多远:

div {
  border: 10px dotted black;
  padding: 15px;
  background: lightblue;
  background-clip: padding-box;
}
亲自试一试 »

定义和用法

这个background-clip属性定义背景(颜色或图片)应在元素内延伸多远。

展示演示❯

默认值: 边框
遗传:
可动画: 不。阅读可动画的
版本: CSS3
JavaScript 语法: 对象.style.backgroundClip="content-box"尝试一下

浏览器支持

表中的数字指定完全支持该属性的第一个浏览器版本。

Property
background-clip 4.0 9.0 4.0 3.0 10.5


CSS 语法

background-clip: border-box|padding-box|content-box|initial|inherit;

属性值

Value Description Demo
border-box Default value. The background extends behind the border Demo ❯
padding-box The background extends to the inside edge of the border Demo ❯
content-box The background extends to the edge of the content box Demo ❯
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

相关页面

CSS教程:CSS 背景

HTML DOM 参考:backgroundClip 属性