JSFiddle - React, Tailwind, and code Playground
by GaryC123
HTML
<div>
<div></div>
</div>
CSS
div {
height:200px;
width:200px;
border:5px solid blue
}
div div {
height:35px;
border:none;
background: -webkit-linear-gradient(blue, lightblue);
background: -o-linear-gradient(blue, lightblue);
background: -moz-linear-gradient(blue, lightblue);
background: linear-gradient(blue, lightblue);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='blue', endColorstr='lightblue', GradientType=0 );
}