JSFiddle - React, Tailwind, and code Playground
by LyndseyB
HTML
<div class="div">
<h1>
Header 1
</h1>
<h2>
Header 2
</h2>
<h3>
Header 3
</h3>
</div>
CSS
.div {
border: 1px solid black;
display: flex;
height: 500px;
width: 500px;
justify-content: center;
align-items: center;
flex-direction: column;
}