How to center a div with Bootstrap2?

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

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

I tried like all combinations:

b
9条回答
  •  无人及你
    2020-12-04 09:54

    Sounds like you just wanted to center align a single container. The bootstrap framework might be overcomplicating that one example, you could have just had a standalone div with your own styling, something like:

    
    

    and style:

    .login-container {
      margin: 0 auto;
      width: 400px; /* Whatever exact width you are looking for (not bound by preset bootstrap widths) */
    }
    

    That should work fine if you are nested somewhere within a bootstrap .container div.

提交回复
热议问题