Skip to content

Instantly share code, notes, and snippets.

@renestalder
Last active January 4, 2016 19:09
Show Gist options
  • Save renestalder/8665175 to your computer and use it in GitHub Desktop.
Save renestalder/8665175 to your computer and use it in GitHub Desktop.
ZURB Foundation px Fallback for rem
// Foundation settings example
$base-font-size: 62.5%;
$rem-base: 10px;
// Mixin using rem-calc from ZURB Foundation, but adding pixel fallback
@mixin rem-fallback($property, $values, $base-value: $rem-base){
#{$property}: $values;
#{$property}: rem-calc($values, $base-value: $rem-base);
}
// Example
html {
font-size: $base-font-size;
}
body {
font-family: 'Helvetica Neue', 'Open Sans', Helvetica, sans-serif;
@include rem-fallback(font-size, 16px);
}
// Output
html {
font-size: 62.5%;
}
body {
font-family: 'Helvetica Neue', 'Open Sans', Helvetica, sans-serif;
font-size: 16px;
font-size: 1.6rem;
}
@Maybach91
Copy link

To use the rem-fallback with just an integer-variable as parameter the line 7 should be changed to the following:
#{$property}: #{$values}px;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment