Mixin Padding - SASS

/* USAGE: .sample { @include padding(20px, null, 40px, 10px); } */ @mixin padding($top: null, $right: null, $bottom: null, $left: null) { padding-bottom: $bottom; padding-left: $left; padding-right: $right; padding-top: $top; }

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.