JSFiddle - React, Tailwind, and code Playground

by danShumway

HTML

<div class = 'hat'></div>
<div class = 'cat'></div>

CSS

.cat
{
    position:absolute;
    width:200px;
    height:200px;
    background-color:red;
}

.hat
{
    width:200px;
    height:200px;
    background-color:blue;
}

JavaScript

something = function()
{
     alert('clicked');   
    
}