Bootstrap 3: How to set default grid to 960px width?

前端 未结 4 583
刺人心
刺人心 2021-02-02 00:36

I\'m working with Bootstrap 3 and the client wants the website container width to be set to 960px. Do I directly edit the CSS file or what is the best way to do this? I heard so

4条回答
  •  -上瘾入骨i
    2021-02-02 00:53

    The easiest way is to wrap everything in a container like this..

    .container-fixed {
      margin: 0 auto;
      max-width: 960px;
    }
    

    http://bootply.com/94943

    Or, you can go with LESS/custom build: http://getbootstrap.com/customize/

提交回复
热议问题