The grid is composed of horizontal rows the max-width of the page of container. The rows form the outer layer of the layout and the columns form the inner layer of the layout. For example:
<div class="row">
<div class="column width-2"> ... </div>
<div class="column width-10"> ... </div>
</div>
Easily division the columns to create complex layouts. To divide the columns with using class .width-x For example:
<div class="row">
<div class="column width-6">
<div class="column width-4"> ... </div>
<div class="column width-4"> ... </div>
<div class="column width-4"> ... </div>
</div>
<div class="column width-6"> ... </div>
</div>
With the using class .offset-x you can move the sections from the this location to other up to eleven columns. For example:
<div class="row">
<div class="column width-4"> ... </div>
<div class="column width-1 offset-1"> ... </div>
<div class="column width-4 offset-2"> ... </div>
</div>
By using classes .left-x and .right-x you can specify from which columns began or by using classes .centered in columns you can centered columns. For example:
<div class="row">
<div class="column width-2 left-10"> ... </div>
<div class="column width-10 right-2"> ... </div>
<div class="column width-7 centered"> ... </div>
</div>
You can choose the columns width for any devices
For the tablet and mobile width add the class .auto-width
For the hidden of columns on tablet add the class .tablet-hide
For the hidden of columns on mobile add the class .mobile-hide
For the hidden of columns on mobile and tablets add the class .auto-hide For example:
<div class="row">
<div class="column width-6 auto-width"> ... </div>
<div class="column width-6 tablet-hide"> ... </div>
</div>
<div class="row">
<div class="column width-6 auto-width"> ... </div>
<div class="column width-6 auto-width"> ... </div>
</div>
<div class="row">
<div class="column width-3 auto-width"> ... </div>
<div class="column width-3 auto-width"> ... </div>
<div class="column width-3 auto-hide"> ... </div>
<div class="column width-3 auto-hide"> ... </div>
</div>
Add the class .grid-items inside row.
If you want create auto margin between columns add only to columns the classes .width-x use only 2,3,4,6.
For example:
<div class="row grid-items">
<div class="column width-3"> ... </div>
<div class="column width-3"> ... </div>
<div class="column width-3"> ... </div>
<div class="column width-3"> ... </div>
</div>