vertical-align with Bootstrap 3

后端 未结 25 2451
庸人自扰
庸人自扰 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:50

    I prefer this method as per David Walsh Vertical center CSS:

    .children{
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }
    

    The transform isn't essential; it just finds the center a little more accurately. Internet Explorer 8 may be slightly less centered as a result, but it is still not bad - Can I use - Transforms 2d.

提交回复
热议问题