JSFiddle - React, Tailwind, and code Playground

by Jenti Dabhi

HTML

<div class="image">
<img src="http://i.imgur.com/StEW4JD.jpg" class="image"></div>

CSS

.image {
    position: relative;
    display: inline-block;
}

div.image:after {
    content: "";
    background: rgba(255, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}