vertical-align with Bootstrap 3

后端 未结 25 2473
庸人自扰
庸人自扰 2020-11-21 05:34

I\'m using Twitter Bootstrap 3, and I have problems when I want to align vertically two div, for example — JSFiddle link:

25条回答
  •  谎友^
    谎友^ (楼主)
    2020-11-21 06:03

    I've spent a lot of time trying solutions from here and none of them helped me. After a few hours, I belive this will allow u to center vert any child element in BS3.

    CSS

    .vertical-center {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    

    HTML

提交回复
热议问题