Back to Blog
Image Description

Margin and Padding SCSS Mixins for Grid Alignment

Web Development

CSS

August 10, 2021

Horizontal and vertical flow are important in making an app's appearance easy to read and pleasant to look at. I wanted to create an SCSS mixin that helps me unify all padding and margin to a base unit of size for a consistent layout and also mimic the css shorthand. I'll first show my final results, then after I break it down and explain the components. Check it out!

Final Results

1$base-font-size: 14; 2$x-height: 8; 3$baseline: 4; 4 5$spacing-size: $baseline; 6 7/** 8 Calculate spacing in rems based off multiples of fine grid size 9**/ 10@function calcSpacingRems($multiple) { 11 @return #{$multiple * ($spacing-size / $base-font-size)}rem; 12} 13 14/** 15 Add margin(s) to element based on multiples of $fine-grid-size in rems. Uses the shorthand 16 syntax. Ex: margin(1), margin(1,2), margin(1,2,3), margin(1,2,3,4) 17**/ 18@mixin margin($multipliers...) { 19 $content: null; 20 @for $i from 1 through length($multipliers) { 21 $val: nth($multipliers, $i); 22 @if $val == auto { 23 $content: append($content, auto); 24 } @else { 25 $content: append($content, calcSpacingRems(nth($multipliers, $i))); 26 } 27 } 28 margin: $content; 29} 30 31/** 32 Add padding(s) to element based on multiples of $fine-grid-size in rems. Uses the shorthand 33 syntax. Ex: padding(1), padding(1,2), padding(1,2,3), padding(1,2,3,4) 34**/ 35@mixin padding($multipliers...) { 36 $content: null; 37 @for $i from 1 through length($multipliers) { 38 $content: append($content, calcSpacingRems(nth($multipliers, $i))); 39 } 40 padding: $content; 41} 42 43/** 44 A more generalized way to add spacing, pass in property name and multiplier 45 Ex: @include addSpacing('margin-top', 4) 46**/ 47@mixin addSpacing($property, $multiplier) { 48 #{$property}: calcSpacingRems($multiplier); 49} 50

Explanation

Calculating Spacing

The app currently uses a base font size of 14px with a font x-height of 8px and a baseline of 4px. The unit spacing size is based on the baseline value, so everything will be spaced in multiples of 4. Let's first define some variables and create a function that calculates the padding based on the multiplier and converts the value to rems.

1$base-font-size: 14; 2$x-height: 8; 3$baseline: 4; 4 5$spacing-size: $baseline; 6 7@function calcSpacingRems($multiple) { 8 @return #{$multiple * ($spacing-size / $base-font-size)}rem; 9} 10

We divide the spacing size by the base font size to get the base value in rems, then multiply the value by he multiplier.

Now that we can calculate the spacing, let's create a mixin that will return a margin.

Goals

  • I want to mimic the shorthand functionality of margin that can accept 1, 2, 3 or 4 values. (w3schools.com/css/css_margin.asp)
  • I need to handle auto if it's passed in
  • The arguments are the multiplier values
  • Returns a value in rems
1@mixin margin($multipliers...) { 2 $content: null; 3 @for $i from 1 through length($multipliers) { 4 $val: nth($multipliers, $i); 5 @if $val == auto { 6 $content: append($content, auto); 7 } @else { 8 $content: append($content, calcSpacingRems(nth($multipliers, $i))); 9 } 10 } 11 margin: $content; 12} 13

The ... syntax in the argument definition allows any number of arguments to be added to the function. Since there could be 1 to 4 arguments, we can loop through them using the scss @for syntax and process each one. On each loop, if the value is auto we skip the processing and use auto, otherwise we use the calcSpacingRems() function to convert the multiplier integer to a rem value. We then use the SCSS append() function to concatenate valid CSS values to the $content variable. Once it's finished looping through the list, we just return the calculated margin css property.

We can repeat the same process for the padding, but since auto is not valid syntax, we can skip the conditional.

1@mixin padding($multipliers...) { 2 $content: null; 3 @for $i from 1 through length($multipliers) { 4 $content: append($content, calcSpacingRems(nth($multipliers, $i))); 5 } 6 padding: $content; 7} 8

Adding Spacing in a Single Direction

The padding and margin mixins require 4 arguments to add a value in a single direction (Ex: padding(1, 0, 0, 0)). To make it easier, I created a simple mixin that takes the spacing direction property and a single value as arguments.

1@mixin addSpacing($property, $multiplier) { 2 #{$property}: calcSpacingRems($multiplier); 3}

For example, to add a top margin, use addSpacing('margin-top', 2) instead of padding(2, 0, 0, 0). I'm not sure if it's cleaner, but it is easier to know what property is being changed at a glance.

Riding the Happy Path

As you may have noticed, I don't have any error messaging or catches for incorrect arguments values, I'm just assuming everyone knows what they're doing. SCSS does provide great ways to handle this, but I just kept the complexity simple for this demonstration. Feel free to add on and improve!