Background Origin

background-origin controls where the background image starts.

Preview

Code

<style>
.box{
width:200px;
height:120px;
padding:20px;
border:10px solid #333;
background:url("https://via.placeholder.com/80") no-repeat;
background-origin:content-box;
}
</style>

<div class="box"></div>

More CSS Backgrounds Examples (8)