@mixin rtl($property, $ltr-value, $rtl-value) { // with argumens #{$property}: $ltr-value; [dir=rtl] & { #{$property}: $rtl-value; } } .sidebar { @include rtl(float, left, right); }