JSFiddle - React, Tailwind, and code Playground

HTML

<figure>
    <img src="1.jpg" alt="" class="i1">
    <img src="2.jpg" alt="" class="i2">
</figure>

CSS

figure {
    position: relative;
}

.i1, .i2 {
    position: absolute;
    width: 250px;
    height: 200px;
    border: 22px solid red;
}

.i2 {
    left: 100px;
    top: 100px;
}