JSFiddle - React, Tailwind, and code Playground

by Maxim Gladkov

HTML

<p class="Letters">
    <span>aasdfasd<br/>asdfasdfasdf</span>
</p>

CSS

.Letters
{
    font-size:24px;
    color: white;
    font-family:Futura, Arial, San-serif;
    height:400px;
    width: 400px;
    margin:2px;
    position:relative;
    top:5px;
    background-color:#3594F0;
    text-align: center;
    float: left;
    display: table;
}

.Letters span {
    display: table-cell;
    vertical-align: middle;
}