JSFiddle - React, Tailwind, and code Playground
by Softlink
HTML
<div><img src="http://alpatriott.ru/works/primer/images/romashki.jpg"></div>
CSS
body{
background:#222;
padding:50px;
}
div{
display:inline-block;
position:relative;
}
img{
display:block;
width:300px;
border-radius:15px;
}
div:before{
content:'';
position:absolute;
top:-1px;
bottom:-1px;
left:-1px;
right:-1px;
box-shadow:inset 0px 0px 15px 10px #222;
border-radius:15px;
}