JSFiddle - React, Tailwind, and code Playground
by Derek Leung
HTML
<div class="hidden">
<p>This is some text.</p>
</div>
CSS
div.hidden
{
display: none
}
JavaScript
$('div').fadeIn(1000);
by Derek Leung
<div class="hidden">
<p>This is some text.</p>
</div>
div.hidden
{
display: none
}
$('div').fadeIn(1000);