JSFiddle - React, Tailwind, and code Playground
by Softlink
HTML
<div></div>
CSS
body{
background: #f2f200;
background: -moz-linear-gradient(left, #f2f200 50%, #140f00 50%);
background: -webkit-gradient(linear, left top, right top, color-stop(50%,#f2f200), color-stop(50%,#140f00));
background: -webkit-linear-gradient(left, #f2f200 50%,#140f00 50%);
background: -o-linear-gradient(left, #f2f200 50%,#140f00 50%);
background: -ms-linear-gradient(left, #f2f200 50%,#140f00 50%);
background: linear-gradient(left, #f2f200 50%,#140f00 50%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f200', endColorstr='#140f00',GradientType=1 );
}
div{
width:400px;
height:400px;
margin:50px auto;
border:1px solid red;
}