JSFiddle - React, Tailwind, and code Playground
HTML
<div id="fillheight">This div fills the height of the screen!</div>
<div id="fillwidth">This div fills the width of the screen!</div>
CSS
#fillheight {
height: 100vh;
background-color: gold;
color: white;
}
#fillwidth {
width: 100vw;
background-color: green;
color: white;
}