JSFiddle - React, Tailwind, and code Playground
HTML
<div class="..." id="about">
// OTHER HTML CODE
</div>
CSS
#about{
background:red;
width:100%;
}
JavaScript
$(function() {
var viewportHeight = $(window).height();
$('#about').css( "margin-top" , viewportHeight );
});
/*
$(document).ready(function(){
var viewportHeight = $(window).height();
$('#about').css( "margin-top" , viewportHeight );
})
*/