JSFiddle - React, Tailwind, and code Playground

by Alexander Startsev

HTML

<ul>
    <li>Red</li>
    <li>Green</li>
    <li>Blue</li>
    <li>Black</li>
</ul>

CSS

li{
    width: 100px;
    height: 100px;
    position: absolute;
    list-style: none;
    color: #FFF;
    padding: 5px;
    font: 14px/20px Arial, sans-serif;
}

li{
    top: 10px;
    left: 10px;
    background: red;
    z-index: 1;
}

li+li{
    top: 30px;
    left: 80px;
    background: green;
    z-index: 2;
}

li+li+li{
    top: 50px;
    left: 170px;
    background: blue;
    z-index: 3;
}

li+li+li+li{
    top: 40px;
    left: 230px;
    background: black;
    z-index: 4;
}

li:hover{
    cursor: pointer;
    z-index: 10;
}