Skip to content

Instantly share code, notes, and snippets.

@rzzo
Created July 16, 2015 18:00
Show Gist options
  • Save rzzo/ea9d79eadb6988cfc1f3 to your computer and use it in GitHub Desktop.
Save rzzo/ea9d79eadb6988cfc1f3 to your computer and use it in GitHub Desktop.
Scss mixin - px to rem
//=== px -> rem USE: @include rem('padding',18px 0 20px 5px);
//=== Thanks to the tons of posts that I put this together with.
$baseline-px: 16px;
@mixin rem($property, $px-values) {
// Convert the baseline into rems
$baseline-rem: $baseline-px / 1rem * 1;
// Print the first line in pixel values
#{$property}: $px-values;
// If there is only one (numeric) value, return the property/value line for it.
@if type-of($px-values) == "number" {
#{$property}: $px-values / $baseline-rem; }
@else {
// Create an empty list that we can dump values into
$rem-values: ();
@each $value in $px-values {
// If the value is zero or not a number, return it
@if $value == 0 or type-of( $value ) != "number" {
$rem-values: append($rem-values, $value); }
@else {
$rem-values: append($rem-values, $value / $baseline-rem); } }
// Return the property and its list of converted values
#{$property}: $rem-values; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment