Get rid of Gutter in TwitterBootstrap

后端 未结 9 1415
迷失自我
迷失自我 2021-02-04 11:29

Maybe I\'m crazy but is there not a way to get rid of the 20px gutter on the twitter bootstrap? For example I\'ve used frameworks that use an alpha and omega that over-ride the

9条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-02-04 12:06

    You can place your content into container-fluid div:

    ...

    And then modify (in bootstrap.css) or override the container-fluid class:

    .container-fluid {
        padding-left: 0px;
        margin-left: -20px;
      }
    

    boostrap-responsive.css has the same class so you can set different margins for mobile screens vs. desktop screens.

提交回复
热议问题