Home »
MCQs »
SASS MCQs
Which Sass function is used to get the maximum value from the given numbers?
30. Which Sass function is used to get the maximum value from the given numbers?
- maximum(number...)
- getmax(number...)
- max(number...)
- maxvalue(number...)
Answer: C) max(number...)
Explanation:
The max(number...) function is used to get the maximum value from the given number.
Example:
max(15,1 7, 90, 0, -3)
Result: 90