JSFiddle - React, Tailwind, and code Playground

by Vitaliy

HTML

<div class='wrap'><div class='photo'><div class='border'></div></div></div>

CSS

.wrap{
    position:relative;
    width:100px;
    height:100px;
    overflow:hidden;
    margin:5px;
    border-radius:100%;
   
}
.photo{
    width:80px;
    height:80px;
    border-radius:100%;
    background:url(https://yt3.ggpht.com/-YJ8xwJBnr2U/AAAAAAAAAAI/AAAAAAAAAAA/V-oWRHN1lbc/s100-c-k-no/photo.jpg);
    left:10px;
    top:10px;
    position:relative;
    background-position:center;
    
}
.border{
    position:absolute;
    left:-10px;
    top:-10px;
    width:101px;
    height:101px;
    border-radius:100%;
    background:url(https://yt3.ggpht.com/-YJ8xwJBnr2U/AAAAAAAAAAI/AAAAAAAAAAA/V-oWRHN1lbc/s100-c-k-no/photo.jpg);
    background-position:center;
    z-index:-1;
    filter:blur(4px);
}