Reputation: 8722
Zurb Foundation 3 and 4 had the .end class for the last child in a grid if you did not want it to float right. Since updating to Foundation 5 all our .end classes seems to have stopped working.
I've looked in the Foundation Documentation but I can't find any pointers. Does anyone know?
Upvotes: 1
Views: 363
Reputation: 9434
Seems to be an ill-conceived bi-directional layout addition to Foundation 5 that will be fixed when Foundation 5.0.4 is released.
This github issue documents the problem.
Upvotes: 1
Reputation: 429
In the latest version there is now;
.end {
float: right !important; }
which is pushing it over. Swapping this out for .left seems to fix it. HTH
Upvotes: 2