Last active
March 21, 2019 07:37
-
-
Save scheibome/b003e51218ac759bcbcb67f5f8c97253 to your computer and use it in GitHub Desktop.
px to rem converting
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.4.25) | |
// Compass (v1.0.3) | |
// ---- | |
/** | |
* Convert font-size from px to rem with px fallback | |
* | |
* @param $size - the value in pixel you want to convert | |
* | |
* e.g. p {@include fontSize(12px);} | |
* | |
*/ | |
$basefontsize: 18px; | |
// Function for converting a px based font-size to rem. | |
@function calculateRem($size) { | |
$remSize: $size / $basefontsize; | |
//Default font size on html element is 100%, equivalent to 16px; | |
@return #{$remSize}rem; | |
} | |
// Mixin that will include the fall back px declaration as well as the calculated rem value. | |
@mixin fontSize($size) { | |
font-size: $size; | |
font-size: calculateRem($size); | |
} | |
h1 { | |
@include fontSize(50px); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Convert font-size from px to rem with px fallback | |
* | |
* @param $size - the value in pixel you want to convert | |
* | |
* e.g. p {@include fontSize(12px);} | |
* | |
*/ | |
h1 { | |
font-size: 50px; | |
font-size: 2.77778rem; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment