グリッド コンポーネントに関する Foundation のドキュメントによると、基本的に、オフセット クラスを使用して 1 つ以上のグリッド列をスペースにすることができます。
<div class="row">
<div class="large-1 columns">1st column</div>
<div class="large-9 large-offset-2 columns">2 spaces to the left of this column</div>
</div>
これにより、1 列が作成され、次に 2 列のプレーン スペースと 9 列が作成されます。これらのオフセットを要素の左ではなく右にすることは可能ですか? 例えばこんな感じでしょうか。
<div class="row">
<div class="large-1 columns">1st column</div>
<div class="large-9 large-offset-right-2 columns">2 spaces to the right</div>
</div>