$digtal-list1: percentage,round,ceil-floor;
.list-function-style { size: length($digtal-list1); }
但是你有没有试过在 length() 里直接使用逗号拼接的参数呢?
你这样写会被识别为 length((percentage,round,ceil-floor))
但是直接这样写 length(percentage,round,ceil-floor) 会编译失败