JSFiddle - React, Tailwind, and code Playground

by meetravi

HTML

<div></div>

CSS

div {
    width:220px;
    height:220px;
    border-radius:20%/20%;
    background-color:red;
    position:relative;
}

div::before, div::after {
    content:'';
    position:absolute;
    z-index:-1;
}

div::before {
    border-radius: 2%/30%;
    background-color: blue;
    top: 33px;
    bottom: 33px;
    right: -2px;
    left: -2px;
}

div::after {
    border-radius: 30%/2%;
    background-color: green;
    left: 33px;
    right: 33px;
    top: -2px;
    bottom: -2px;
}

div:hover,
div:hover::before,
div:hover::after {
    background-color:#ff4949
}