Skip to content

Instantly share code, notes, and snippets.

@MikeMcChillin
Created April 8, 2013 02:43
Show Gist options
  • Save MikeMcChillin/5333843 to your computer and use it in GitHub Desktop.
Save MikeMcChillin/5333843 to your computer and use it in GitHub Desktop.
Converts px to ems.
// Converts px to ems
// http://www.pjmccormick.com/sweet-sass-function-convert-px-em
@function em($target, $context: $base-font-size)
@if $target == 0
@return 0
@return $target / $context + 0em
$base-font-size: 16px
// Usage
h1
font-size: em(24px)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment