JSFiddle - React, Tailwind, and code Playground

by Alexandre Simoes

HTML

<div class="box box1">box 1</div>
<div class="box box2">box 2</div>

CSS

.box{
    border: solid 1px #000;
    width: 100px;
    height: 100px;
    margin: 5px;
    padding: 20px;
}
.box1{
    box-sizing: border-box;
}
.box2{

}