<p>You can specify alignment using alignment variations on a grid, row, or column level.</p>
<div class="ui ignored info message">
<div class="header">Word Order Requirements</div>
<p>Keep in mind multi-word variations like <code>right floated</code> <b>require you to specify both class names side-by-side</b>, this helps preserve syntax when stacking variations like a <code>right floated left aligned column</code></p>
</div>
<div class="ui right aligned grid">
<div class="right floated left aligned six wide column">
<div class="ui segment">
Right floated left aligned
</div>
</div>
<div class="left floated right aligned six wide column">
<div class="ui segment">
Left floated right aligned
</div>
</div>
<div class="center aligned two column row">
<div class="column">
<div class="ui segment">
Center aligned row
</div>
</div>
<div class="column">
<div class="ui segment">
Center aligned row
</div>
</div>
</div>
<div class="sixteen wide column">
<div class="ui segment">
Right Aligned Grid
</div>
</div>
</div>
</div>
<div class="highlighted negative example">
<h4 class="ui header">Grid Row Spacing</h4>
@ -286,37 +324,11 @@ themes : ['Default']
<div class="example">
<h4 class="ui header">Full Width Backgrounds</h4>
<p>Grids use <b>negative margins</b> to remove first and last column margins, this means you cannot directly apply a background color on a grid. To add a background try wrapping your grid inside another container.</p>
<p>Grids use <b>negative margins</b> to remove first and last column margins, this means you cannot directly apply a background color on a grid. To add a background try wrapping your grid inside another container, for example a <code>ui segment</code>.</p>
<div class="ui ignored warning message">
Due to <a href="http://stackoverflow.com/questions/19718634/how-to-disable-margin-collapsing" target="_blank">collapsing margins</a> the parent container must have a clearfix, or <code>overflow:hidden</code> to prevent inheriting the grid's margins.
<h4 class="ui header">Row and Column Backgrounds</h4>
<p>If you need to specify colors on grid rows of columns, you can use a <b>color variation</b></p>
<div class="ui info message ignored">
<p>Using colored variations should use a <code>padded grid</code> variation to make sure that the grid knows to preserve column padding on colored backgrounds</p>
</div>
</div>
<div class="example">
<h4 class="ui header">Padded Grids</h4>
<p>When using grids with backgrounds you may not want the grid contents to sit flush with the edge of its parent containers, to fix this you need to use the <code>padded</code> grid variation, or specify a padding on your parent container.</p>