JSFiddle - React, Tailwind, and code Playground
by stuttufu
HTML
<button>Button</button>
<div>Div</div>
<div><button>Button in Div</button></div>
CSS
button{
z-index: 3;
height: 40px;
top: 97px;
left: 10%;
right: 10%;
width: 80%;
position: absolute;
}
div{
z-index: 3;
height: 40px;
top: 197px;
left: 64px;
right: 64px;
position: absolute;
background: blue;
}
div button{
z-index: 3;
height: 40px;
top: 97px;
left: 0;
right: 0;
width: 100%;
position: absolute;
}