.footer{
width : percentage(5 / 20);
height: 5 / 20 * 100#{'%'};
}
width : percentage(5 / 20);
height: 5 / 20 * 100#{'%'};
}
2017-06-05
$list: (6,50,45,3,55,10,23);
.test {
margin-top: length($list);
margin-bottom: length(10px 20px (border 1px solid) 2em);
margin-right: length(1,2,456,6);
}
發現只有margin-right編譯不通過,其實如果想用逗號分隔的話,可聲明list類型的變量就可以了
.test {
margin-top: length($list);
margin-bottom: length(10px 20px (border 1px solid) 2em);
margin-right: length(1,2,456,6);
}
發現只有margin-right編譯不通過,其實如果想用逗號分隔的話,可聲明list類型的變量就可以了
2017-06-03