定義和(hé)用(yòng)法
background-origin 屬性規定 background-position 屬性相對(duì)于什(shén)麽位置來(lái)定位。
注釋:如果背景圖像的 background-attachment 屬性爲 "fixed",則該屬性沒有效果。
實例
相對(duì)于内容框來(lái)定位背景圖像:
div
{
background-image:url('smiley.gif');
background-repeat:no-repeat;
background-position:left;
background-origin:content-box;
}
CSS 語法
background-origin: padding-box|border-box|content-box;
屬性值
值 | 描述 | 測試 |
---|---|---|
padding-box | 背景圖像相對(duì)于内邊距框來(lái)定位。 | 測試 |
border-box | 背景圖像相對(duì)于邊框盒來(lái)定位。 | 測試 |
content-box | 背景圖像相對(duì)于内容框來(lái)定位。 | 測試 |