Sass supports some operators that can be used to generate strings.
- <expression> + <expression> returns a string that contains both expressionsâ values. If the either value is a quoted string, the result will be quoted; otherwise, it will be unquoted.
- <expression> / <expression> returns an unquoted string that contains both expressionsâ values, separated by /.
- <expression> - <expression> returns an unquoted string that contains both expressionsâ values, separated by -. This is a legacy operator, and interpolation should generally be used instead.
Example:
Output:
"GeeksforGeeks"
Output:
GeeksforGeeks
Output:
30px/50px
Output:
Geeks-for-Geeks
The above operators are not only used for strings but for any values that you can code in CSS. But, you must know about the following exceptions to this:
- Numbers canât be used as the left-hand value of an equation, because they have their own operators.
- Colors canât be used as the left-hand value in an equation, because they used to have their own operators.
Output:
"Elapsed time: 40s"
Output:
"true is a boolean value"
Note: Always try to use interpolation to create strings as they are cleaner and clearer, rather than using the operators. Unary Operators For some historical reasons, Sass also supports / and - as unary operators that take only a single value:
- / <expression> returns an unquoted string starting with / and followed by the expressionâs value.
- - <expression> returns an unquoted string starting with - and followed by the expressionâs value.
Output:
/geeks
Output:
-geeks