JSFiddle - React, Tailwind, and code Playground

HTML

<h1>Centering with table-cell </h1>
<div class="parent">
     <div class="child">
         PINK SQUARE SHOULD BE CENTERED.
         BOTH VERTICALLY AND HORIZONTALLY
    </div>
</div>

CSS

h1 {   font: 13px Verdana;    }

.parent {
   background: linen;
   width: 300px;  
   height: 300px; 
   text-align: center; 
   display: table;
}

.child {
    background: pink;  
    width: 200px; 
    height: 200px;
    display:  table-cell;
    vertical-align: middle;
}