Home › Forums › CSS › Fullscreen Not scrolling+scrolling › Re: Fullscreen Not scrolling+scrolling
October 26, 2012 at 6:44 am
#110319
Participant
Just set the #container
to be overflow:auto
:
#container {overflow:auto}
Then, with JQuery, set the container height to be same with the window height:
$(window).on("resize", function() {
$('#container').css('height', $(this).height());
}).trigger("resize");