Либо на чистом CSS:
html, body {
height: 100%;
position: relative;
width: 100%;
}
.div-class {
height: 100%;
position: relative;
width: 100%;
}
Либо на JS:
$(window).resize(function(){
var height = $(window).height();
$('.div-class').css({'height':height});
}).resize();