JSFiddle - React, Tailwind, and code Playground
by OliverJAsh2
HTML
<button>try to click me</button>
<div class="content flex">
<div class="item">foo</div>
</div>
<button>try to click me</button>
CSS
button {
width: 100%;
}
.content {
border: 1px solid;
margin-bottom: -20px;
display: flex;
}
.item {
border: 1px solid;
background-color: yellow;
padding-bottom: 20px;
width: 50%;
}