JSFiddle - React, Tailwind, and code Playground

by Robbie Wxyz

HTML

<div class="center_me">
    I am centered!
</div>

CSS

.center_me {
	height: 200px;
    width:300px;
	background:#ccc;
    vertical-align: middle; 
    display:table-cell;
}