Bootstrap align Columns of different height

前端 未结 4 1475
悲&欢浪女
悲&欢浪女 2021-01-27 20:17

I would like to be able to align an unknown number of columns with an unknown height. Since I do not know how many columns there will be it is not ideal for me to use multiple

4条回答
  •  感情败类
    2021-01-27 21:03

    Another way to handle it, and still maintain Bootstrap's responsive columns is to use CSS to force a clear:left every x columns. For example, when you have 4 columns in a row:

    .row > .col-md-3:nth-child(4n+1) {
        clear: left;
    }
    

    http://codeply.com/go/OHg5vB0Xg3

提交回复
热议问题