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
var h = $('div').height(); $('div').height( Math.ceil(h/100) * 100 );