JSFiddle - React, Tailwind, and code Playground

by k_rma

HTML

<div class="one">
    WITH BACKGROUND-SIZE 110%
</div>

<br>

<div class="two">
    DEFAULT
</div>

CSS

div.one {
    background: -moz-linear-gradient(center top , blue, red);
    background: -webkit-linear-gradient(top , blue, red);
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-size:110%;
}

div.two {
    background: -moz-linear-gradient(center top , blue, red);
    background: -webkit-linear-gradient(top , blue, red);
    border: 1px solid rgba(0, 0, 0, 0.1);
}