JSFiddle - React, Tailwind, and code Playground
HTML
<div class="block">
<img src="https://webfoundation.org/docs/2017/03/March-12-Letter.jpg" alt="image">
</div>
CSS
.block {
width: 200px;
position: relative;
margin: 50px;
}
.block:after {
border: 2px solid red;
left: 20px;
bottom: 15px;
width: 100%;
height: 100%;
content: '';
position: absolute;
z-index: -1;
}
img {
width: 100%;
height: auto;
}