JSFiddle - React, Tailwind, and code Playground

by luka kupunia

HTML

<div class="box">
    <h1>hello world</h1>
    <div class="content">
        <h2>hii guys</h2>
        <h3>hiii content</h3>
    </div>
</div>

CSS

body {
    margin: 0;
}
.box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
}
h1 {
    padding-top: 100px;
}