JSFiddle - React, Tailwind, and code Playground

by David_Barnett

HTML

<div class="div1"></div>
<div class="div2"></div>
<div class="div3"></div>

CSS

div{
    width:100px;
    min-width:100px;
    max-width:100px;
    height:100px;
    min-height:100px;
    max-height:100px;
    top: 0px;
    float: left;
    position: relative;
    z-index: 0;
    border-radius: 70px 5px 70px 5px; 
    opacity: 0.85;
}
div:hover
{
    opacity: 1.0;
    cursor: pointer;
    z-index: 3;
    
}
.div1
{
    background-color:lime;
    
}
.div2
{
    background-color: red;
    left: -35px;
    z-index: 2;
}
.div3
{
    background-color:red;
    left: -70px;
}