JSFiddle - React, Tailwind, and code Playground
by chodorowicz
HTML
<div class="container">
<div class="inner"></div>
</div>
<div class="container container_with_overflow">
<div class="inner"></div>
</div>
CSS
.container {
background: red;
}
.container_with_overflow {
overflow: hidden;
}
.inner {
background: blue;
height: 100px;
margin-bottom: 50px;
}