SASS's optional arguments let you use a parameter only if you specify its value; otherwise, it will be ignored.
Let's take an example of the following mixin:
@mixin galerie-thumbnail ($img-height:14em, $img-width: null) {
width: $img-width;
height: $img-height;
outline: 1px solid li...