Skip to content

Instantly share code, notes, and snippets.

@scottkellum
Created May 15, 2013 19:47
Show Gist options
  • Save scottkellum/5586791 to your computer and use it in GitHub Desktop.
Save scottkellum/5586791 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com, the Sass playground.
@function rem($rem, $base: 16px) {
$property: font-size; // need property inspection
@if unitless($rem) == false {
$rem: $rem / 1rem;
}
$pixels: $rem * $base;
@return ($rem * 1rem) + unquote(";") $property + unquote(":") $pixels ;
}
foo {
font-size: rem(1);
}
foo {
font-size: 1rem; font-size: 16px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment