1、background-origin: padding-box|border-box|content-box;
取值:
- border:
- 从border区域开始显示背景。
- padding:
- 从padding区域开始显示背景。
- content:
- 从content区域开始显示背景。
取值:
- border-box:
- 从border区域向外裁剪背景。
- padding-box:
- 从padding区域向外裁剪背景。
- content-box:
- 从content区域向外裁剪背景。
- no-clip:
- 从border区域向外裁剪背景。
3、background-size:length|percentage|cover|contain;
4、background-attachment:scroll|fixed|inherit
scroll | The background image scrolls with the rest of the page. This is default |
fixed | The background image is fixed |
inherit | Specifies that the setting of the background-attachment property should be inherited from the parent element |