JSFiddle - React, Tailwind, and code Playground

HTML

<div>This is some text</div>
<div>This is some more text that will span across two lines because it is quite long</div>

CSS

div {
    border: 1px dotted #ccc;
    font: 10px Verdana, sans-serif;
    height: 50px;
    width: 250px;
    display: table-cell;
    vertical-align: middle;
}