You are here : cssCSS 3background-clip

background-clip - CSS 3

The background-clip property specifies the painting area of the 
background.


Syntax

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


Example

div
	{
	    border: 10px dotted black;    
	padding:35px;    background: yellow;    
	background-clip: content-box;}


Output / Return Value


Limitations


Alternatives / See Also


Reference