Grid is a two dimensional layout system. We use Grid as our main layout system when creating sections of content and nesting items within parent containers.
Using the class .Column on a parent tag will create a full width container.
See the Pen Single Column by Wilmington University (@WilmU01) on CodePen.
Using the class .ColumnTwo on a parent tag will create a container that will split nested items in two even columns.
See the Pen Two Columns Even by Wilmington University (@WilmU01) on CodePen.
Using the class .ColumnUneven4 or .ColumnUneven3 on a parent tag will create a container that will split nested items in two uneven columns. Each nested item should have the class .ColumnUneven-lg or .ColumnUneven-sm in order for this to function correction.
See the Pen Two Columns Uneven by Wilmington University (@WilmU01) on CodePen.
Using the class .ColumnThree on a parent tag will create a container that will split nested items in three even columns.
See the Pen Three Colunns Even by Wilmington University (@WilmU01) on CodePen.
Using the class .ColumnFour on a parent tag will create a container that will split nested items in four even columns.
See the Pen Four Columns Even by Wilmington University (@WilmU01) on CodePen.
Using the class .ColumnAuto on a parent tag will create a container that will auto-fill columns with as many nested items as possible. Nested items will break to multiple lines depending on screen size.
See the Pen Auto-Fill Columns by Wilmington University (@WilmU01) on CodePen.
.Column = single column layout.ColumnTwo = two even column layout.ColumnThree = three even column layout.ColumnFour = four even column layout.ColumnUneven3 = two column layout broken into one third and two thirds.ColumnUneven4 = two column layout broken into one fourth and three fourths.ColumnUneven-sm = Applied to child element to make one third or one fourth depending on the parent layout. Must have .ColumnUneven3 or ColumnUneven4 on the parent element.ColumnUneven-lg = Applied to child element to make two thirds or three fourths depending on the parent layout. Must have .ColumnUneven3 or ColumnUneven4 on the parent element.ColumnUneven = ten column layout that allows more layout control over child elements