JSFiddle - React, Tailwind, and code Playground

by zakizakibzr

HTML

<div class="item">

</div>
<p><code> move mouse over top of this text</code></p>

CSS

.item {
    height: 200px;
    width: 200px;
    background: red;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.item:hover {
    opacity: 1;
}
code {
    background: linear-gradient(to right, #fce4ed, #ffe8cc);
}