1 2// Make line-height equal to an element's height 3 4@mixin line-and-height($height) { 5 height: $height; 6 line-height: $height - 2; 7} 8