例
指定背景的繪畫領域:
div
{
border: 10px dotted black;
padding:35px;
background: yellow;
background-clip: content-box;
}
試一試» 定義和用法
背景夾屬性指定的背景畫區域。
默認值: | border-box |
---|---|
遺傳: | no |
動畫: | no. Read about animatable |
版: | CSS3 |
JavaScript語法: | object .style.backgroundClip="content-box" Try it |
瀏覽器支持
在表中的數字規定,完全支持該屬性的第一個瀏覽器版本。
屬性 | |||||
---|---|---|---|---|---|
background-clip | 4 | 9 | 4 | 3.0 | 10.5 |
CSS語法
background-clip: border-box|padding-box|content-box|initial|inherit;
屬性值
值 | 描述 | 播放 |
---|---|---|
border-box | 默認值。 背景剪裁到邊框框 | 播放 ” |
padding-box | 背景剪裁到填充盒 | 播放 ” |
content-box | 背景剪裁到內容框 | 播放 ” |
initial | 將此屬性設置為默認值。 閱讀關於初始 | 播放 ” |
inherit | 繼承其父元素此屬性。 閱讀關於繼承 |
相關頁面
CSS3教程: CSS3背景
HTML DOM參考: backgroundClip property