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
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.