How to vertically center a container in Bootstrap?

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

    add Bootstrap.css then add this to your css

       
    html, body{height:100%; margin:0;padding:0}
     
    .container-fluid{
      height:100%;
      display:table;
      width: 100%;
      padding: 0;
    }
     
    .row-fluid {height: 100%; display:table-cell; vertical-align: middle;}
     
     
    
    .centering {
      float:none;
      margin:0 auto;
    }
    Now call in your page 
    
    
    Am in the Center Now :-)

提交回复
热议问题