.casl{
text:percentage(5);
text:round(52.3);
text:ceil(2.6);
text:floor(3.3);
text:abs(-55);
text:min(55,23);
text:max(36,25);
text:random(1);
}
text:percentage(5);
text:round(52.3);
text:ceil(2.6);
text:floor(3.3);
text:abs(-55);
text:min(55,23);
text:max(36,25);
text:random(1);
}
2017-03-14
$a:type-of(false);
$b:type-of(green);
$c:type-of(10 / 5 = 2);
.test{
content:$a,$b,$c
}
$b:type-of(green);
$c:type-of(10 / 5 = 2);
.test{
content:$a,$b,$c
}
2017-03-10
body{
width:length(5px 88px (border 66px solid) 4em (border 8em solid));
}
width:length(5px 88px (border 66px solid) 4em (border 8em solid));
}
2017-03-10
$list: border-bottom (4px solid blue) black;
.text {
content: nth($list,2);
}
.text {
content: nth($list,2);
}
2017-03-09