I am using this SCSS function from Zurb Foundation 4 framework:
@function remCalc($pxWidth) {
@return $pxWidth / $em-base * 1rem;
}
it returns a REM value only, so it does not work with IE8. Is it possible to add a PX fallback to support IE8? I am not familiar in coding SASS functions.