JSFiddle - React, Tailwind, and code Playground
HTML
<div class="box">
<div class="box-in"></div>
</div>
<div class="box">
<div class="box-in"></div>
</div>
CSS
body {
position: fixed;
width: 100%;
border: none;
display: table;
table-layout: fixed;
padding: 0;
margin: 0;
top: 0;
left: 0;
}
.box {
border: none;
display: table-cell;
height: 100vh;
background-color: yellow;
}
.box-in {
border: solid 1px;
margin-top:10px;
margin-bottom:10px;
margin-left:10px;
margin-right:10px;
height: 100%;
}