Skip to content

Instantly share code, notes, and snippets.

@ingozoell
Created April 26, 2014 19:30
Show Gist options
  • Save ingozoell/11328879 to your computer and use it in GitHub Desktop.
Save ingozoell/11328879 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<h1>Headline 1 <span>Headline</span></h1>
// ----
// Sass (v3.2.19)
// Compass (v0.12.6)
// ----
@function em($target, $context: $base-font-size) {
@if $target == 0 { @return 0 }
@return $target / $context + 0em;
}
html {
font-size: 100%;
}
$base-font-size: 10px;
body {
font-size: 62.5%;
}
h1 {
font-size: em(21px, 10px);
}
h1 span {
font-size: em(12px, 21px);
}
html {
font-size: 100%;
}
body {
font-size: 62.5%;
}
h1 {
font-size: 2.1em;
}
h1 span {
font-size: 0.57143em;
}
<h1>Headline 1 <span>Headline</span></h1>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment