How to center a div with Bootstrap2?

前端 未结 9 1141
星月不相逢
星月不相逢 2020-12-04 09:16

http://twitter.github.com/bootstrap/scaffolding.html

I tried like all combinations:

b
9条回答
  •  余生分开走
    2020-12-04 09:50

    @ZuhaibAli code kind of work for me but I changed it a little bit:

    I created a new class in css

    .center {
         float: none;
         margin-left: auto;
         margin-right: auto;
    }
    

    then the div become

    I added col-md-6 for the width of the div itself which in this situation meant the div is half the size, there are 1 -12 col md in bootstrap.

提交回复
热议问题