Skip to content

Instantly share code, notes, and snippets.

@marcelweder
Last active September 16, 2016 08:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcelweder/d1c004cd96b74ce8c5cf7cdb07535bff to your computer and use it in GitHub Desktop.
Save marcelweder/d1c004cd96b74ce8c5cf7cdb07535bff to your computer and use it in GitHub Desktop.
REM Calculator
/**
* Calculate pixel to rem
* @param size [int] pixel size to convert
* @param base [int] html font-size in pixel
*/
function calcRem(size, base) {
return parseFloat((size / base).toPrecision(4));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment