Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 1st, 2012  |  syntax: None  |  size: 0.18 KB  |  hits: 9  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Concat String in LESS CSS
  2. @url: @root@file;
  3.        
  4. @url: "@{root}@{file}";
  5.        
  6. @root: "../img/";
  7. @file: "test.css";
  8.  
  9. @url: "@{root}@{file}";
  10.  
  11. .px{ background-image: url(@url); }