How do I bottom-align grid elements in bootstrap fluid layout

前端 未结 10 1700
你的背包
你的背包 2020-12-04 10:21

I have a fluid layout using Twitter\'s bootstrap, wherein I have a row with two columns. The first column has a lot of content, which I want to fill the span normally. The

10条回答
  •  心在旅途
    2020-12-04 10:21

    You can use flex:

    @media (min-width: 768px) {
      .row-fluid {
        display: flex;
        align-items: flex-end;
      }
    }
    

提交回复
热议问题