JSFiddle - React, Tailwind, and code Playground
by luka kupunia
HTML
<div>
<span></span>
<img src="https://picsum.photos/500/300" alt="">
</div>
CSS
div {
position: relative;
}
span {
position: absolute;
width: 20px;
height: 20px;
background: red;
bottom: 10%;
left: 10%;
}
img {
width: 100%;
height: auto;
}