JSFiddle - React, Tailwind, and code Playground

by Trongnguyen91

HTML

<div class="content">
	<h1 class="title">this is title</h1>	
</div>

CSS

.content{
	display:flex;
	justify-content:center;
	align-items:center;
	background-color:green;
}
.content .title{
	color:#fff;
	text-transform:uppercase;
}