JSFiddle - React, Tailwind, and code Playground

by chad

HTML

<div class="incorrect"></div>
<div class="correct"></div>

CSS

.incorrect {
    width: 200px;
    height: 200px;
    background-color: grey;
    background-image: -webkit-gradient(linear, top left, bottom left, from(red), to(blue));
}
.correct {
    width: 200px;
    height: 200px;
    background-color: grey;
    background-image: -webkit-gradient(linear, left top, left bottom, from(red), to(blue));
}