Gridsystem

The default Metro UI CSS grid system utilizes 12 columns, making a 940px wide container without responsive features enabled. With the responsive CSS file added, the grid adapts to be 724px and 1170px wide depending on your viewport. Below 767px viewports, the columns become fluid and stack vertically.

span1
span1
span1
span1
span1
span1
span1
span1
span1
span1
span1
span1
span2
span3
span7
span3
span9
span12

Basic grid HTML

For a simple two column layout, create a .row and add the appropriate number of .span* columns. As this is a 12-column grid, each .span* spans a number of those 12 columns, and should always add up to 12 for each row (or the number of columns in the parent).

<div class="grid">
    <div class="row">
        <div class="span4">...</div>
        <div class="span8">...</div>
    </div>
</div>

Given this example, we have .span4 and .span8, making for 12 total columns and a complete row.

Offsetting columns

Move columns to the right using .offset* classes. Each class increases the left margin of a column by a whole column. For example, .offset4 moves .span4 over four columns.

span1
span1
span1
span1
span1
span1
span1
span1
span1
span1
span1
span1
4
3 offset 2
3 offset 1
3 offset 2
6 offset 3

Nesting columns

To nest your content with the default grid, add a new .row and set of .span* columns within an existing .span* column. Nested rows should include a set of columns that add up to the number of columns of its parent.

level 1 column
level 2
level 2
level 2
 <div class="grid">
     <div class="row">
         <div class="span9">
            level 1 column
             <div class="row">
                 <div class="span6" >level 2 </div>
                 <div class="span3" >level 2 </div>
             </div>
         </div>
     </div>
 </div>

Fluid Grid

1
2
3
4
5
6
7
8
9
10
11
12
1
2
3
4
5
6
2
3
4
5
6
<div class="grid fluid">
...
</div>