Sass (stylesheet Language) - Mixins - Arguments

Arguments

Mixins also support arguments.

@mixin left($dist) { float: left; margin-left: $dist; } #data { @include left(10px); }

Would compile to:

#data { float: left; margin-left: 10px; }

Read more about this topic:  Sass (stylesheet Language), Mixins

Famous quotes containing the word arguments:

    Nothing requires a greater effort of thought than arguments to justify the rule of non-thought.
    Milan Kundera (b. 1929)

    Children are intensely invested in getting their way. They will devote more emotional and intellectual energy to winning arguments than parents ever will, and are almost always better rested.
    Jean Callahan (20th century)