Grid
The grid makes use of flexbox and box-sizing to provide features that float-based layouts can’t.
The grid object is made up of two core classes:
Class Name | Description |
---|---|
o-grid |
The main container element that holds all of the grid columns. |
o-grid-cell |
A child element of o-grid that acts as a column within
the grid. |
<div class="o-grid">
<div class="o-grid-cell">
Hello World.
</div>
</div>