How to vertically center a container in Bootstrap?

后端 未结 9 1549
囚心锁ツ
囚心锁ツ 2020-11-22 09:06

I\'m looking for a way to vertically center the container div inside the jumbotron and to set it in the middle of the page.

The .jum

9条回答
  •  野性不改
    2020-11-22 09:43

    Tested in IE, Firefox, and Chrome.

    .parent-container {
        position: relative;
        height:100%;
        width: 100%;
    }
    
    .child-container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    Header Text

    Some Text

    Found on https://css-tricks.com/centering-css-complete-guide/

提交回复
热议问题