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 figure out. How do I add precise gap between the columns? Say I have container 960px, 3 columns at 310px and 2 gutters at 15px in between 3 columns. How do I do that?
(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
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:
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..
Updated Bootply
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:
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: