JSFiddle - React, Tailwind, and code Playground
by jessekinsman
HTML
<div id="wrapper">
<ul id="menu">
<div id="abdiv">
</div>
</ul>
</div>
CSS
#wrapper {
position: relative;
overflow: hidden;
width: 100px;
background: black;
}
#menu {
position: relative;
width: 100px;
background: red;
}
#abdiv {
position: absolute;
top: 10px;
height: 50px;
background: grey;
left: 0;
z-index: 2;
width: 100px;
}