center a row using Bootstrap 3

后端 未结 13 1425
长发绾君心
长发绾君心 2020-12-29 18:08

How to center a row (12 column) in Bootstrap 3 ? I do not want to use the offset

I am using this way but not worked.

13条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-29 18:40

    Add this to your css:

    .row-centered {
       text-align:center;
    }
    
    
    .col-centered {
       display:inline-block;
       float:none;
       /* reset the text-align */
       text-align:left;
       /* inline-block space fix */
       margin-right:-4px;
    }
    

    Then, in your HTML code:

        
提交回复
热议问题