JSFiddle - React, Tailwind, and code Playground

by agib

HTML

<div class="flexbox-container">
	<div>Blah blah</div>
	<div>Blah blah blah blah blah ...</div>
</div>

CSS

html, body {
    height: 100%;
    width: 100%;
}
.flexbox-container {
    height: 100%;
    width: 100%;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	-ms-flex-align: center;
	-webkit-align-items: center;
	-webkit-box-align: center;

	align-items: center;
    justify-content: center;

}