This is the output of a grid-column mixin as mentioned on the site -
.element {
width: calc(25% - 25px);
float: left;
margin-left: 20px;
}
My problem is that I don't want gutters before and after the first and last columns.
Bootstrap uses a row class that has negative left and right margins to adjust the column padding.Is a similar approach suggested for Neat layout?