Skip to content

Instantly share code, notes, and snippets.

@enasellithy
Last active August 24, 2016 16:04
Show Gist options
  • Select an option

  • Save enasellithy/74b3c162e8e5833f474bb92c9590759e to your computer and use it in GitHub Desktop.

Select an option

Save enasellithy/74b3c162e8e5833f474bb92c9590759e to your computer and use it in GitHub Desktop.
Heading-sass
<h1>Hello</h1>
<h2>Hello</h2>
<h3>Hello</h3>
<h4>Hello</h4>
<h5>Hello</h5>
// ----
// Sass (v3.4.21)
// Compass (v1.0.3)
// ----
$map: (h1: 50px, h2: 40px, h3: 30px, h4: 20px, h5: 10px);
@each $key, $val in $map {
#{$key} {
font-size: $val;
}
}
h1 {
font-size: 50px;
}
h2 {
font-size: 40px;
}
h3 {
font-size: 30px;
}
h4 {
font-size: 20px;
}
h5 {
font-size: 10px;
}
<h1>Hello</h1>
<h2>Hello</h2>
<h3>Hello</h3>
<h4>Hello</h4>
<h5>Hello</h5>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment