JSFiddle - React, Tailwind, and code Playground

by Slezi

HTML

<div class="container">
    <img src="http://www.placehold.it/100x500">
    <div class="tag">Featured</div>
</div>

CSS

.container {
    border: 1px solid #DDDDDD;
    width: 100px;
    height: 100px;
    position:relative;
}
.tag {
    float: left;
    position: absolute;
    left: 0px;
    top: 0px;
    background-color: green;
}