I\'m using a table to design the layout of my web page. I want the table to fill the page even if it doesn\'t contain much content. Here\'s the CSS I\'m using:
You can handle this in Javascript/JQuery.
window_height = $(window).height(); $('#container').css('min-height', window_height);