JSFiddle - React, Tailwind, and code Playground

by Jeado

HTML

<div class="d1" >d1
    <div class="d2" onclick="alert('d2');">d2
        <div class="d3" onclick="alert('d3');">d3
        </div>
    </div>
</div>

CSS

.d1{
    color: white;
    background-color:red;
    width:100px;
    height:100px;
}
.d2{
    background-color:blue;
    width:80px;
    height:80px;  
}
.d3{
    background-color:yellow;
    width:60px;
    height:60px;  
}