JSFiddle - React, Tailwind, and code Playground

by brunoais

HTML

<div class="table">
	<div>
		<div>left suff horray!</div>
		<div>right stuff horray!</div>
	</div>
</div>

CSS

/*
 Table
 */
.table{
	display:table;
}
.table > *{
	display:table-row;
}
.table > * > *{
	display:table-cell;
}