SASS | String Operators (original) (raw)

Last Updated : 15 Jul, 2025

Sass supports some operators that can be used to generate strings.

Example:

css `

@debug "Geeks" + "forGeeks"

`

Output:

"GeeksforGeeks"

css `

@debug Geeks + forGeeks

`

Output:

GeeksforGeeks

css `

@debug #{20px + 10px} / 50px

`

Output:

30px/50px

css `

@debug Geeks - for - Geeks

`

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:

@debug "Elapsed time: " + 40s

`

Output:

"Elapsed time: 40s"

css `

@debug true + " is a boolean value"

`

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:

@debug / geeks

`

Output:

/geeks

css `

@debug - geeks

`

Output:

-geeks