Parentheses
Parentheses can be used to affect the order of operations:
p {
width: 1em + (2em * 3);
}
is compiled to:
p {
width: 7em; }
Parentheses
Parentheses can be used to affect the order of operations:
p {
width: 1em + (2em * 3);
}
is compiled to:
p {
width: 7em; }
Please login to continue.