JSFiddle - React, Tailwind, and code Playground
HTML
<div class="description">
<span>
Welcome to the world of beautiful design,<br />
technology and music.
</span>
</div>
CSS
.description {
width: 645px; height: 200px;
margin: 0 auto;
text-align: center;
background: #000;
color: #fff;
}
.description:before {
content: "";
display: inline-block;
height: 100%;
margin-right: -0.25em; /* Adjusts for spacing */
vertical-align: middle;
}
.description span {
display: inline;
vertical-align: middle;
background: green;
}