JSFiddle - React, Tailwind, and code Playground

by Julian

HTML

<div class="container">
<img src="http://image.tmdb.org/t/p/w1000/dpo7WDOhWtACY6oflrqxutbhg81.jpg"
        style="-webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)))"
        class="backgroundImg">
      </div>

CSS

body{
  background:black;
 }
 .backgroundImg {
position:absolute;
top:0px;
left:0px;
size:contain;
width:1000;
height:10;
z-index:1;
}