JSFiddle - React, Tailwind, and code Playground

HTML

<div class="outer">
  THE OUTER DIV
  <div class="table">
    THE TABLE
    <div class="inner">
      INNER DIV
    </div>
  </div>
</div>

CSS

.outer {
  background: yellow;
  border: 1px solid brown;
}

.table {
  background: lightblue;
  border: 1px solid blue;
  display: table;
  margin: 2px 10px;
  padding: 2px 10px;
}

.inner {
  background: orange;
  border: 1px solid red;
}