Check out this jsfiddle I've created: https://jsfiddle.net/gfxjwuao/
.skeleton-yqjgac1o2g6:empty {
height: 133px;
background-color: red;
border-radius: 0px 0px 0px 0px;
background-image: radial-gradient( circle 20px at 20px 20px, #F5F7F9 19px, transparent 20px );
background-repeat: repeat-y;
background-size: 40px 133px;
background-position: center center;
}
<div class="skeleton-yqjgac1o2g6"></div>
I have successfully centered the circle horizontally, but struggling with vertical alignment. How can I achieve that?
The code
background-position: center center
doesn't seem to work for vertical alignment.