juandahveed
9/28/2017 - 1:18 PM

setting dynamic height with a variable and calc() css funct

setting dynamic height with a variable and calc() css funct

var set_height = function(){
				var navHeight = $('.nav-height').height();
					$('.body_height').css('height', 'calc(100vh - ' + navHeight + 'px)');
};

set_height();