html - Scale panels one below other in one container -
i have these widgets in html, using bootstrap panels:
why second line left widget scales accordingly first line right widget height, , not below first left widget height? in same container.
is there solution this, solution hold them in same container?
or can use jquery , set class .same-height
jquery(document).ready(function($) { var heights = $(".same-height").map(function() { return $(this).height(); }).get(), maxheight = math.max.apply(null, heights); $(".same-height").height(maxheight); });
Comments
Post a Comment