Simple SASS Em Calculator Function
// DEFAULTS (define the default em value in pixels)
$emBase: 16px; //default
// FUNCTION (em calculator)
@function emCal($pixelBasedNum){
@return $pixelBasedNum / $emBase * 1em
}
// IN USE
.container {
width: emCal(1200px); // will return 75em
}
Written by Kim Goulbourne
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Functions
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#