Skip to content

Instantly share code, notes, and snippets.

@JeongInyoung
Last active August 29, 2015 14:14
Show Gist options
  • Save JeongInyoung/f54efd733ad5945e230d to your computer and use it in GitHub Desktop.
Save JeongInyoung/f54efd733ad5945e230d to your computer and use it in GitHub Desktop.
Rem and Px Mixin for Sass
<p>Testing</p>
@function calculateRem($size) {
$remSize: $size / 16px;
@return $remSize * 1rem;
// or @return #{$remSize}rem
}
@mixin font-size($size) {
font-size: $size;
font-size: calculateRem($size);
}
p {
@include font-size(14px)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment