Is there any way via jquery or javascript to make an element stretch its height to a certain set of numbers? I mean, as it accommodates more content, its height would only f
something like:
$('element').css({ height : (0|(targetHeight + 99) / 100) * 100 });
if you want it automatic:
$(function(){ var $elem = $('#element') $elem.css({ height : (0|($(elem).height() + 99) / 100) * 100 }); });