JSFiddle - React, Tailwind, and code Playground
by John Doe
HTML
<div>
<figure>
<img src="http://ic.pics.livejournal.com/gorshkov_sergey/27284117/263289/263289_1000.jpg" alt="">
</figure>
</div>
CSS
* {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
div {
width: 33%;
padding: 30px;
background-color: #444;
}
figure {
overflow: hidden;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
}
img {
max-width: 100%;
height: auto;
-webkit-border-radius: 50%;
-moz-border-radius: ;
border-radius: ;
}