JSFiddle - React, Tailwind, and code Playground
by Gautam
HTML
<section class="home"></section>
<section class="main">
<h1>Hello</h1>
</section>
CSS
html,body{
height: 100%;
width: 100%;
}
.home{
background: #000;
height: 100%;
}
.main{
overflow: hidden;
height: 100%;
background: pink;
}