What is difference between column and columns class in the Foundation grid system?
There is no difference between the class “column” or “columns” in the Foundation grid system. As mention in the Zurb Foundation docs, the only difference is grammar.
So your grid classes may look like …
class=”large-1 column”
class=”medium-6 columns”
if you want to be grammatically correct.
But the following works just as well…
class=”large-1 columns”
class=”medium-6 column”