Bootstrap row with columns of different height

前端 未结 3 1892
不思量自难忘°
不思量自难忘° 2020-11-22 01:14

I currently have something like:

Content
Content<
3条回答
  •  情书的邮戳
    2020-11-22 01:50

    For some reason this worked for me without the .display-flex class

    .row {
        display: flex;
        flex-wrap: wrap;
    }
    .row > [class*='col-'] {
        display: flex;
        flex-direction: column;
    }
    

提交回复
热议问题