I've only just started working with bootstrap and unsure about how to achieve my goal.
I would like the gutters to all be even, like they are in this image:
by default, they look like this, the vertical gutters in between columns (marked with blue) are double the horizontal and outside gutters:
Any help on the best way to solve this probably would be appreciated.
Facing this problem, I made the following addition to my css stylesheet:
This overrides the default bootstrap styling and makes the left and right sides and the gutter equal width.
I've been stuck with this problem, my solution was creating a mixin which allows me to specify in SCSS, the actual gutter size I want ...
Solution: 1)
And to use it...
The actual solution came about from this issue mentionned on github, which I believe addresses the same problem.
Solution: 2)
Another solution, would be simply to create your custom CSS class
Hope that helps!