How to vertically center a container in Bootstrap?

后端 未结 9 1594
囚心锁ツ
囚心锁ツ 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

    Give the container class

    .container{
        height: 100vh;
        width: 100vw;
        display: flex;
    }
    

    Give the div that's inside the container:

    align-content: center;
    

    All the content inside this div will show up in the middle of the page.

提交回复
热议问题