@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;
}
}