Skip to content

Instantly share code, notes, and snippets.

@nadavspi
Created September 12, 2014 16:09
Show Gist options
  • Select an option

  • Save nadavspi/bb9df17ec7a5d2b93ba2 to your computer and use it in GitHub Desktop.

Select an option

Save nadavspi/bb9df17ec7a5d2b93ba2 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<h1 class="em">Hi there <span>Dmitry</span></h1>
<h1 class="rem">Hi there <span>Dmitry</span></h1>
// ----
// Sass (v3.3.14)
// Compass (v1.0.1)
// ----
html {
font-size: 18px;
}
span {
color: salmon;
}
.em {
// 2 em == 2*18 == 36px
font-size: 2em;
span {
// 1.5em == 1.5*36 == 54px
font-size: 1.5em;
}
}
.rem {
// 2 rem == 2*18 == 36px
font-size: 2rem;
span {
// 1.5rem == 1.5*18 == 27px
font-size: 1.5rem;
}
}
html {
font-size: 18px;
}
span {
color: salmon;
}
.em {
font-size: 2em;
}
.em span {
font-size: 1.5em;
}
.rem {
font-size: 2rem;
}
.rem span {
font-size: 1.5rem;
}
<h1 class="em">Hi there <span>Dmitry</span></h1>
<h1 class="rem">Hi there <span>Dmitry</span></h1>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment