JSFiddle - React, Tailwind, and code Playground

HTML

<div id="element" style=" border : 1px solid black">works now </div>

JavaScript

$(window).resize(function(){
    var newwidth = $(window).width();
    var newheight = $(window).height();      
    $("#element").height(newheight-10).width(newwidth-10);
});