JSFiddle - React, Tailwind, and code Playground

by totoromaum

HTML

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

CSS

html {
  box-sizing:border-box;
}
*, *:before, *: after {
  box-sizing: inherit;
}
.wrapper {
  width: 400px;
}
.box {
  float: left;
  width: 200px;
  height: 100px;
  padding: 20px;
  border: 1px solid black;
}
.box1 {
  background: lightblue;
}
.box2 {
  background: lightgreen;
}