#willULoveMe {sayYes: comparable(2px,1px); sayNo: comparable(2px,1em);}
2016-08-15
嗯哼,keywords没太懂,大约得回头再来看这个知识点了。。。
max() 和 min()不能传list进去?
$list: (6,50,45,3,55,10,23);
td {width: max($list) + "px"; height: min($list) + "px";}
这么写会报错:
Error: (6, 50, 45, 3, 55, 10, 23) is not a number for `max'
$list: (6,50,45,3,55,10,23);
td {width: max($list) + "px"; height: min($list) + "px";}
这么写会报错:
Error: (6, 50, 45, 3, 55, 10, 23) is not a number for `max'
2016-08-15