JSFiddle - React, Tailwind, and code Playground

by Emanuel Vecchio

HTML

<div class="slider-content">
        <a href="http://lorempixel.com/400/200/">
            <img width="333px" height="277px" src="http://lorempixel.com/333/277/" alt="" />
            <span class="number">1</span>
        </a>
</div>

CSS

.number {    
    position: absolute;
    padding: 5px;
    left: 20px;
    bottom: 20px;
    width: 20px;
    height: 20px;
    background: blue;
    border-radius: 50%;
    text-align: center;
    color: white;
}

.slider-content {
    position: relative;
    width: 333px;
    height: 277px;   
    padding: 0;
    margin: 0;
}