Sass - 找到列表的最大值

时间:2013-03-30 03:30:36

标签: list sass

似乎这应该很容易。如何使用sass从列表中获取最小/最大值?

$max-value: max(10, 20, 30); // returns 30

$list: 10, 20, 30;
$max-value: max($list); // Syntax error: (10, 20, 30) is not a number for `max'

1 个答案:

答案 0 :(得分:10)

我认为这可以满足您的需求:

$max-value: max($list...);