JSFiddle - React, Tailwind, and code Playground

by Pik_at

HTML

<div></div>
<div></div>

<table></table>
<table></table>

CSS

table,
div {
  width: 200px;
  background: tomato;
  margin-bottom: 20px;
  border: 2px solid black;
      -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */
}
div + div,
table + table {
  background: green;
  height: 200px;
}
div {
  display: table;
}