Parentheses

Parentheses

Parentheses can be used to affect the order of operations:

p {
  width: 1em + (2em * 3);
}

is compiled to:

p {
  width: 7em; }
doc_Sass
2016-11-11 13:09:20
Comments
Leave a Comment

Please login to continue.