JSFiddle - React, Tailwind, and code Playground

by Scott Kaye

HTML

<div>
    <img class="thumb" src="http://www.gettyimages.in/gi-resources/images/Homepage/Category-Creative/UK/UK_Creative_462809583.jpg" alt="img">
</div>

CSS

.thumb {
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 50%;
    margin: 50px;
    box-shadow: 0 0 0 5px #777, 0 0 0 10px #f00;
}
body {
    background:#777;
}
div {
    text-align:center;
}