Which Sass function is used to convert the string to the lowercase?

22. Which Sass function is used to convert the string to the lowercase?

  1. str-lower(string)
  2. str-lwr(string)
  3. str-lower-case(string)
  4. to-lower-case(string)

Answer: D) to-lower-case(string)

Explanation:

The to-lower-case(string) function is used to convert the string to the lowercase.

Example:

to-lower-case("IncludeHelp")
Result: "includehelp"

Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.