|<- [[Using Partials]]|[[Using the @extend method]] ->| Mixins -> "Javascript-like functions" @mixin (:, , ..., >paramètre n>) { :; } @include (, , ..., >paramètre n>); @mixin backImage($image) { background: url($image); } .style { @include backimage('file.png'); } Les paramètres sont optionnels : @mixin clearfix { &:before, &:after { content:''; display: table; } &:after { clear:both; } }