JSFiddle - React, Tailwind, and code Playground
by trolleymusic
HTML
<div class="test bg1"></div>
CSS
.test {
background: blue;
background: -webkit-linear-gradient(left, red, blue);
/*background: -ms-linear-gradient(left, red, blue);*/
background: linear-gradient(to right, red, blue);
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
}