1 2 3 4 5 6 7 8 9
@mixin sexy-border($color, $width: 5in) { border: { color: $color; width: $width; style: dashed; } } p { @include sexy-border(blue, 1in); }