Created
September 24, 2013 18:15
-
-
Save szpakoli/6688981 to your computer and use it in GitHub Desktop.
Margin example
From http://www.colmtuite.com/we-all-eat-from-the-same-bowl
This file contains hidden or 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
/* Small margins */ | |
.mas { margin: 5px; } | |
.mts { margin-top: 5px; } | |
.mrs { margin-right: 5px; } | |
.mbs { margin-bottom: 5px; } | |
.mls { margin-left: 5px; } | |
/* Medium margins */ | |
.mam { margin: 10px; } | |
.mtm { margin-top: 10px; } | |
.mrm { margin-right: 10px; } | |
.mbm { margin-bottom: 10px; } | |
.mlm { margin-left: 10px; } | |
/* Large margins */ | |
.mal { margin: 20px; } | |
.mtl { margin-top: 20px; } | |
.mrl { margin-right: 20px; } | |
.mbl { margin-bottom: 20px; } | |
.mll { margin-left: 20px; } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment