JSFiddle - React, Tailwind, and code Playground

by Chintan Upadhayay

HTML

<img src="http://effortthemes.com/wp/feodora/wp-content/uploads/2017/04/1.jpg" alt="" style="
    width: 100px;
    height: 100px;
    background-color: red;
    position: relative;
    z-index: 99999;
">

CSS

img::before{
  content:"";
 background-color: red;
    position: absolute;
    z-index: 99999;

  
}