Skip to content

Instantly share code, notes, and snippets.

@beardedinbinary
Created April 15, 2015 18:14
Show Gist options
  • Save beardedinbinary/f6ae4271e3cb1e1b2414 to your computer and use it in GitHub Desktop.
Save beardedinbinary/f6ae4271e3cb1e1b2414 to your computer and use it in GitHub Desktop.
Strip Units Sass Function
@function strip-units($number) {
@return $number / ($number * 0 + 1);
}
//strip-units(13.48cm) will return 13.48.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment