console
<div class="a">
</div>
<div class="b">
</div>
<div class="c">
</div>
div {
width: 400px;
height: 400px;
margin: 50px;
}
.a {
background: url(https://img95.699pic.com/photo/50017/0822.jpg_wh860.jpg ) no-repeat #58a;
background-position: right 20px bottom 10px;
background-size: 50px 50px;
}
.b {
padding: 10px;
background: url(https://img95.699pic.com/photo/50017/0822.jpg_wh860.jpg ) no-repeat #58a right bottom;
background-size: 50px 50px;
background-origin: content-box;
}
.c {
background: url(https://img95.699pic.com/photo/50017/0822.jpg_wh860.jpg) no-repeat #58a;
background-size: 50px 50px;
background-position: calc(100% - 20px) calc(100% - 10px);
}