scopes.less 306 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. @a: 10;
  2. @some {
  3. @b: @a + 10;
  4. div {
  5. @c: @b + 10;
  6. other {
  7. @d: @c + 10;
  8. world {
  9. @e: @d + 10;
  10. height: @e;
  11. }
  12. }
  13. }
  14. }
  15. body {
  16. @some;
  17. }
  18. @some;
  19. .test(@x: 10) {
  20. height: @x;
  21. .test(@y: 11) {
  22. height: @y;
  23. .test(@z: 12) {
  24. height: @z;
  25. }
  26. .test;
  27. }
  28. .test;
  29. }
  30. pre {
  31. .test;
  32. }