JSFiddle - React, Tailwind, and code Playground
JavaScript
//Keeping it responsive while avoiding vertical scroll bars ..always
var verticalResize = function() {
var a = $('.header').outerHeight(true) + $('.footer').outerHeight(true);
var b = $('.hover-img').height();
var c = $('.looks-hover').height();
$('.content').css({
'max-height': b,
'height': b
});
};
verticalResize();
$(window).on('resize', verticalResize);