|<- [[Using the @content container]]|[[Looping through lists with @for]] ->|
Créer une mixin qui prend un nombre non déterminé de valeur :
@mixin break($args...) { // on ajoute trois point à n'importe quelle variable, cela signifie qu'il s'agira d'une série de valeurs
// @mixin break($first, $args...) { // first valeur habituelle, $args série de n valeur
@if length($args) == 1 {
@media (min-width: nth($args, 1) {
@content;
}
} @else {
@media (min-width: nth($args, 1) and (max-width: nth($args, 2) {
@content;
}
}
@media (min-width: nth($args, 1)) { //le premier argument passé
@content;
}
}
footer {
@include break(0, 500px) {
display: none;
}
}
(il ne semble pas y avoir de else if)