×

Welcome to TagMyCode

Please login or create account to add a snippet.
0
0
 
0
Language: CSS
Posted by: Lori DK
Added: Oct 12, 2016 7:53 PM
Modified: Oct 12, 2016 7:55 PM
Views: 2121
Tags: box css mixins sass
  1. @mixin box($height, $width, $color, $bg) {
  2.   height: $height;
  3.   width: $width;
  4.   color: $color;
  5.   background-color: $bg;
  6. }
  7.  
  8. @include box(50px, 50px, #ffffff, #000000);