Row

This can be used to arrange many items horizontally (inline).

<div class="columns gap">
  <div>Item one</div>
  <div>Item two</div>
  <div>Item three</div>
</div>

Stack

This can be used to arrange many items vertically.

<div class="columns gap flex-column">
  <div>Item one</div>
  <div>Item two</div>
  <div>Item three</div>
</div>