UNPKG

less-tests

Version:

LESS CSS test-suite. Run any kind of test on LESS stylesheets.

23 lines (18 loc) 220 B
.mix-inner (@var) { border-width: @var; } .mix (@a: 10) { .inner { height: (@a * 10); .innest { width: @a; .mix-inner((@a * 2)); } } } .class { .mix(30); } .class2 { .mix(60); }