JSFiddle - React, Tailwind, and code Playground

by Alexey Zuev

HTML

<div class="container"><div class="child">Текст</div></div>
<div class="container"><div class="child"></div></div>

CSS

body {
  font: 20px/1.4 Arial;
}
.container {
  background: #369;
  font-size: 0;
  line-height: 0;
}
.child {
  display: inline-block;
  color: #fff;
  font: 20px/1.4 Arial;
}