一个高度的缩略图

时间:2016-07-11 13:57:32

标签: html twitter-bootstrap thumbnails

我希望我的缩略图具有相同的高度。看看图片: enter image description here 我在那里尝试了这个代码:

  function equalHeight(group) {    
            var tallest = 0;    
            group.each(function() {       
              var thisHeight = $(this).height();       
              if(thisHeight > tallest) {          
                tallest = thisHeight;       
              }    
            });    
            group.each(function() { $(this).height(tallest); });
          } 

但它不会计算图像大小。它也不能处理窗口大小的变化。如何解决?

1 个答案:

答案 0 :(得分:1)

我建议你使用flexbox:http://www.w3schools.com/css/css3_flexbox.asp