background-clip

background-clip 屬性用來增強背景顯示位置的控制能力。可能的值為:

* background-clip: border-box;

背景顯示在邊框內。

* background-clip: padding-box;

背景顯示在內補白(padding)內,而不是邊框內。

* background-clip: content-box;

只在內容內顯示背景,而不是內補白(padding)和邊框內。

* background-clip: no-clip;

默認值,和 border-box 一樣。