1
2 .col-container {
3 display: table; /* Make the
4 container element behave like a table */
5 width: 100%; /*
6 Set full-width to expand the whole page */
7}
8
9.col {
10
11 display: table-cell; /* Make elements inside the container behave like table
12 cells */
13}