JSFiddle - React, Tailwind, and code Playground

by Siva Charan

HTML

<div class="temp">
  Hello World text is vertically centered.
</div>

CSS

.temp {
    display: table-cell;
    vertical-align: middle;
    font-size: 14px;
    height: 80px;
    padding: 0 15px 0 15px;
    overflow: hidden;
    border: 1px solid;
    line-height: 80px;
    position: absolute;
}