How to center a div with Bootstrap2?

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

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

I tried like all combinations:

b
9条回答
  •  爱一瞬间的悲伤
    2020-12-04 09:54

    Follow this guidance https://getbootstrap.com/docs/3.3/css/

    Use .center-block

    .center-block {
      display: block;
      margin-left: auto;
      margin-right: auto;
    }
    

提交回复
热议问题