Forums

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

Home Forums CSS Help to make layout 100% height Re: Help to make layout 100% height

#134873
unasAquila
Participant

a Jquery alternative

if ($(‘#sidebar’).height() < $(document).height()){
$(‘#sidebar’).css(‘height’, $(document).height()+’px’);
}

if ($(‘#content’).height() < $(document).height()){
$(‘#content’).css(‘height’, $(document).height()+’px’);
}