Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Fullscreen Not scrolling+scrolling Re: Fullscreen Not scrolling+scrolling

#110319
Taufik Nurrohman
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");