JSFiddle - React, Tailwind, and code Playground
by Scott Kaye
HTML
<div id="stupid">This is stupid</div>
<div id="better">This is better</div>
CSS
div {
background: lime;
margin: 10px;
width: 40%;
display: inline-block;
}
#stupid {
height: 100px;
padding: 20px;
}
#better {
height: 100px;
padding: 20px;
box-sizing: border-box;
}