How do I keep two side-by-side divs the same height?

后端 未结 22 2806
自闭症患者
自闭症患者 2020-11-21 07:56

I have two divs side by side. I\'d like the height of them to be the same, and stay the same if one of them resizes. I can\'t figure this one out though. Ideas?

To c

22条回答
  •  误落风尘
    2020-11-21 08:19

    Just spotted this thread while searching for this very answer. I just made a small jQuery function, hope this helps, works like a charm:

    JAVASCRIPT

    var maxHeight = 0;
    $('.inner').each(function() {
        maxHeight = Math.max(maxHeight, $(this).height());
    });
    $('.lhs_content .inner, .rhs_content .inner').css({height:maxHeight + 'px'});
    

    HTML

    Content in here
    More content in here

提交回复
热议问题