JSFiddle - React, Tailwind, and code Playground

HTML

<div id="content"></div>

CSS

#content {
    background-color: #f00;
    display: block;
    width: 100%;
}

JavaScript

$(document).ready(
      function(){
        $('#content').height($(window).height()*0.8);
      }
    );