Skip to content

Instantly share code, notes, and snippets.

@sajhd
Created September 2, 2015 15:16
Show Gist options
  • Select an option

  • Save sajhd/995a01a2920941331655 to your computer and use it in GitHub Desktop.

Select an option

Save sajhd/995a01a2920941331655 to your computer and use it in GitHub Desktop.
@function calculateRem($size) {
$remSize: $size / 16px;
@return $remSize * 1rem;
}
@mixin font-size($size) {
font-size: $size;
font-size: calculateRem($size);
}
/*
Usage
p {
@include font-size(14px)
}
Output
p {
font-size: 14px; //Will be overridden if browser supports rem
font-size: 0.8rem;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment