Skip to content

Instantly share code, notes, and snippets.

@frontendbeast
Last active August 29, 2015 14:21
Show Gist options
  • Select an option

  • Save frontendbeast/49e3fe32a40ec4638fc2 to your computer and use it in GitHub Desktop.

Select an option

Save frontendbeast/49e3fe32a40ec4638fc2 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.14)
// Compass (v1.0.1)
// ----
@function em($px-value) {
$size: $px-value/ 16px;
@return $size#{em};
}
$font-size-function: em(16px);
$font-size-value: 1em;
p {
font-size: $font-size-function / 2;
font-size: $font-size-value / 2;
}
p {
font-size: 1em/2;
font-size: 0.5em;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment