How do I center a Bootstrap div with a 'spanX' class?

前端 未结 5 655
臣服心动
臣服心动 2020-12-02 05:15

I use bootstrap and am trying to center a div(span7) like that:

Lorem ips
5条回答
  •  执念已碎
    2020-12-02 05:56

    Define the width as 960px, or whatever you prefer, and you're good to go!

    #main {
     margin: 0 auto !important;
     float: none !important;
     text-align: center;
     width: 960px;
    }
    

    (I couldn't figure this out until I fixed the width, nothing else worked.)

提交回复
热议问题