Skip to content

Instantly share code, notes, and snippets.

@laurakalbag
Created December 17, 2012 17:12
Show Gist options
  • Save laurakalbag/4319964 to your computer and use it in GitHub Desktop.
Save laurakalbag/4319964 to your computer and use it in GitHub Desktop.
Example of repetitive units in CSS replaced with variables in Sass
$unit = 10px;
h1, h2, h3 {
margin-bottom: $unit;
}
p {
margin-bottom: $unit;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment