equal-heights

Content of element not 100% in IE10 inside of equal height columns

六眼飞鱼酱① 提交于 2019-12-02 13:50:01
问题 For an application I am working on I need equal height columns. I chose to use CSS to style my column items as table's. In this way the height of each columns is indeed the maximum among column heights. See an example here: http://jsfiddle.net/roelvd/GXe9m/ Now the height of each column is indeed 100% in each browser. The element (.container in my case) directly in each column should however also be 100% . This works fine in both Firefox and Chrome; but does not in IE10 (and most likely older

Content of element not 100% in IE10 inside of equal height columns

橙三吉。 提交于 2019-12-02 07:22:12
For an application I am working on I need equal height columns. I chose to use CSS to style my column items as table's. In this way the height of each columns is indeed the maximum among column heights. See an example here: http://jsfiddle.net/roelvd/GXe9m/ Now the height of each column is indeed 100% in each browser. The element (.container in my case) directly in each column should however also be 100% . This works fine in both Firefox and Chrome; but does not in IE10 (and most likely older ID versions). HTML: <div id="wrapper" class="table"> <div class="row"> <div class="column" style=

jQuery equal height responsive div rows

最后都变了- 提交于 2019-11-29 14:09:20
问题 I know this question has been asked a million times but i'm looking for something more specific. As my site is fully responsive I need the divs to be resized based on a per row basis rather than setting all to one height. I am using the following modified code to set the heights of all divs within a container: $.fn.eqHeights = function() { var el = $(this); if (el.length > 0 && !el.data('eqHeights')) { $(window).bind('resize.eqHeights', function() { el.eqHeights(); }); el.data('eqHeights',