Check out this fiddle I created here.
It's a simple concept of an image inside a red circle. Is there a way to add some spacing around the image within the circle?
This is the markup I currently have:
<div style="
width: 50px;
height: 50px;
border-radius: 50%;
background-image: url('https://m.media-amazon.com/images/I/41erGZf8kNL._AC_.jpg');
background-size: cover;
background-position: center;
background-origin: padding-box;
background-clip: padding-box;
padding: 20px;
border: 1px solid red;
"></div>
Unfortunately, my current code doesn't achieve the desired effect of giving the image inside the circle a padding of 20px.