I tried to align my articles on a simple grid with Bourbon Neat.
The html:
<body>
<section>
<article>1</article>
<article>2</article>
<article>3</article>
<article>4</article>
<article>5</article> <!-- << comment this to solve the problem -->
</section>
</body>
The scss:
@import "neat";
section {
@include outer-container;
article { @include span-columns(3); }
}
The CodePen example.
As you can see, the fourth and fifth articles are sent to the next row.
When the fifth article is commented, the fourth article correctly remains on the first row.
How can I get rows of four articles?