vertical-align with Bootstrap 3

后端 未结 25 2391
庸人自扰
庸人自扰 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 05:46

        div{
            border: 1px solid;
        }
        span{
            display: flex;
            align-items: center;
        }
        .col-5{
            width: 100px;
            height: 50px;
            float: left;
            background: red;
        }
        .col-7{
            width: 200px;
            height: 24px;
    
            float: left;
            background: green;
        }
        
            

提交回复
热议问题