Bootstrap 3 grid with different height in each item - is it solvable using only CSS?

前端 未结 8 1534
小蘑菇
小蘑菇 2020-12-23 21:20

I\'m trying to make a grid of thumbnails, where each thumbnail has an image and a label. It works fine if all the labels have the same length, because then all the thumbnail

8条回答
  •  Happy的楠姐
    2020-12-23 22:19

    I think it's better to use some few row of js. With CSS you could only have a new "row" using clearfix class (as answered before), but each div will have different height. If you wish to set the same height to each dynamic div, I think you could do it only by js.

      $(document).ready(function() {
        var maxHeight = 0;          
        $(".equalize").each(function(){
          if ($(this).height() > maxHeight) { maxHeight = $(this).height(); }
        });         
        $(".equalize").height(maxHeight);
      }); 
    

    Here is a working demo based on your code.

    All what you have to do is giving the same class to each main div inside the col--, and than run a each() function in js that give to them the same height (the max-one).

    Your HTML structure should looks like that:

提交回复
热议问题