center a row using Bootstrap 3

后端 未结 13 1401
长发绾君心
长发绾君心 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:22

    Instead of trying to center div's, just add this to your local css.

    .col-md-offset-15 {
        margin-left: 12.4999999%;
    }
    
    which is roughly  offset-1 and half of offset-1. (8.333% + 4.166%) = 12.4999%
    

    This worked for me.

提交回复
热议问题