JSFiddle - React, Tailwind, and code Playground
HTML
<div class="container"></div>
CSS
body {
width: 100%;
}
.container {
background: yellow;
position: absolute;
left: 0;
right: 0;
bottom: 0;
top:0;
}
JavaScript
function window_resize(){
var page_h = $("html").height();
var page_w = $("html").width();
}