JSFiddle - React, Tailwind, and code Playground

by meo

HTML

<span>
<div href="#">
    <a href="#">touch me!</a>
    <div><a href="#">some other link!</a></div>
</div>
<span>

CSS

div {
    position: relative;
    float: left;
    background: pink;
    padding: 20px;
}

div div {
    display:none;
    position: absolute;
    top:100%;
    left: 0;
    right: 0;
    height: 300px;
    background: red;
}

div:hover div{
    display: block;
}

span {}

span:hover:after {
    display: block;
    content: "";
    position: absolute;
    top:0; left:0;
    height: 60px;
    width: 100%;
    background: blue;
}