Created
February 4, 2013 22:09
-
-
Save dleatherman/4710153 to your computer and use it in GitHub Desktop.
Simple explanation of the foundation grid system
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="row"> | |
<div class="five columns"> | |
Content... | |
</div><!-- / five columns --> | |
<div class="seven columns"> | |
Content... | |
</div><!-- / seven columns --> | |
</div><!-- / row --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="row"> | |
<div class="eight columns"> | |
<div class="row"> | |
<div class="six columns"> | |
Six columns (nested) | |
</div> | |
<div class="six columns"> | |
Six columns (nested) | |
</div> | |
</div><!-- / Close nested row --> | |
</div><!-- / Close eight columns --> | |
</div><!-- / Close row --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment