JSFiddle - React, Tailwind, and code Playground

by Arnaud

HTML

<div class="main">

<div class="imgOuter">
 <img src="http://digitalin.fr/temp/img-ref.jpg"/>
</div>

CSS

.main{
  position:relative;
  
}
.imgOuter{
  width:100%;
  height:100%;
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
}

.imgOuter img{
  width:100%;
  height:auto;
  
}