JSFiddle - React, Tailwind, and code Playground

by paislee

HTML

<html>
   <body>
      Hello world...
      <div>xxx</div>
   </body>
</html>

CSS

div {
    background: green;
}

JavaScript

$(document).ready(function() {
   var h = $(window).height() - $('div').offset().top;
   $('div').height(h);
});