JSFiddle - React, Tailwind, and code Playground
by bgrins
HTML
<div>
<span>
hi
<br />
there
</span>
</div>
CSS
div {
width: 200px;
height: 200px;
background-color: #fcc;
border: solid 1px;
display: flex;
align-items: center;
}
span {
flex: 1;
text-align: center;
}