JSFiddle - React, Tailwind, and code Playground
by stevenkaspar
HTML
<div class='too-wide'>
causes overflow
</div>
<div class='not-too-wide'>
doesn't cause overflow
</div>
CSS
.too-wide {
margin: 0px 20px;
background: yellow;
}
.not-too-wide {
padding: 0px 20px;
background: blue;
}