background-origin:border-box;
background-clip:border-box /* default */

background-origin:content-box;
background-clip:content-box

background-origin:padding-box; /* default */
background-clip:padding-box

Note: A new property background-clip: border-box | content-box | padding-box; restricts the background in relation to the box of the element.

Background-origin independently specifies the edges of the box relative to which the positions of background images are calculated.