How to adjust gutter in Bootstrap 3 grid system?

前端 未结 3 1551
南旧
南旧 2020-12-02 18:38

The new Bootstrap 3 grid system is great. It\'s more powerful for responsive design at all screen sizes, and much easier for nested.

But I have one issue I could not

相关标签:
3条回答
  • 2020-12-02 19:14

    To define a 3 column grid you could use the customizer or download the source set your less variables and recompile.

    To learn more about the grid and the columns / gutter widths, please also read:

    • Bootstrap 3 - Set Container Width to 940px Maximum for Desktops?
    • Why does Bootstrap 3 force the container width to certain sizes?
    • Bootstrap 3 Gutter Size
    • Reduce the gutter (default 30px) on smaller devices in Bootstrap3?

    In you case with a container of 960px consider the medium grid (see also: http://getbootstrap.com/css/#grid). This grid will have a max container width of 970px. When setting @grid-columns:3; and setting @grid-gutter-width:15px; in variables.less you will get:

    15px | 1st column (298.33) | 15px | 2nd column (298.33) |15px | 3th column (298.33) | 15px
    
    0 讨论(0)
  • 2020-12-02 19:20

    (Posted on behalf of the OP).

    I believe I figured it out.

    In my case, I added [class*="col-"] {padding: 0 7.5px;};.

    Then added .row {margin: 0 -7.5px;}.

    This works pretty well, except there is 1px margin on both sides. So I just make .row {margin: 0 -7.5px;} to .row {margin: 0 -8.5px;}, then it works perfectly.

    I have no idea why there is a 1px margin. Maybe someone can explain it?

    See the sample I created:

    Demo
    Code

    0 讨论(0)
  • 2020-12-02 19:32

    You could create a CSS class for this and apply it to your columns. Since the gutter (spacing between columns) is controlled by padding in Bootstrap 3, adjust the padding accordingly:

    .col {
      padding-right:7px;
      padding-left:7px;
    }
    

    Demo: http://bootply.com/93473

    EDIT If you only want the spacing between columns you can select all cols except first and last like this..

    .col:not(:first-child,:last-child) {
      padding-right:7px;
      padding-left:7px;
    }
    

    Updated Bootply

    For Bootstrap 4 see: Remove gutter space for a specific div only

    0 讨论(0)
提交回复
热议问题