Complete the code to import the Sass math module using @use.
@use '[1]'; .selector { width: math.div(100%, 2); }
The @use rule imports built-in Sass modules. To use math functions, you import sass:math.
Complete the code to import the Sass color module and use the lighten function.
@use '[1]'; .button { background-color: color.lighten(#336699, 20%); }
The lighten function is part of the sass:color module, so you import it with @use "sass:color";.
Fix the error by completing the import statement for the Sass list module.
@use '[1]'; $list: list.append((1, 2, 3), 4);
The list.append function is in the sass:list module, so you must import it with @use "sass:list";.
Fill both blanks to import the string module and use the str-length function.
@use '[1]'; $text-length: string.[2]("Hello World");
The str-length function is in the sass:string module. Import it with @use "sass:string"; and call string.str-length().
Fill all three blanks to import the math module, use the pow function, and assign the result to a variable.
@use '[1]'; $result: math.[2](2, [3]);
To calculate powers, import sass:math and use the pow function. Here, math.pow(2, 3) calculates 2 to the power of 3.