Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to escape whole declaration? This complies fine in less.js (I'm using less.app)

margin: e(" 0 10px");

But this throws an error:

e("margin: 0 10px");

I've tried putting 'margin' in a variable but without success.

share|improve this question

1 Answer

up vote 5 down vote accepted

Sorry that's not possible. A couple things though:

The official escape designation (according to lesscss.org is the tilde-quote, not the e() syntax, like so:

margin: ~"0 10px";

Second, the code you provided is not nearly complex enough to warrant a LESS CSS string literal. Please share the actual code that you are having trouble with. You may want to close this question and ask another one.

Third, remember that you can include a .css file - it will not be compiled, just dumped into the output. The syntax is identical to a standard CSS import:

@import "myfile.css";
share|improve this answer
e() syntax is for less.js. what I woul'd like to do is for example a mixine that would add vendor prefixes, taking whole unprefixed declaration as an argument. – Litek Dec 2 '11 at 19:40
While the e() syntax totally works, the documented syntax is ~"tilde-quote". Either way, it doesn't work (as you found out). Are you using lesscss namespaces?#myNamespace { – Nathan Strutz Dec 4 '11 at 1:23
1  
very helpful. especially useful when setting background images! ie. background: ~"url(img......) no-repeat"; as the path can be changed. – John B Mar 28 '12 at 15:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.