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.

I'm trying to add gradients through css.

I have this line for gradients in older versions of ie.

filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#e4da9d, endColorstr=#c1b676);

However the javascript interpreter for less css is giving me a syntax error for that line. Is there a way to skip that line from parsing and just output it the way it is.

share|improve this question

1 Answer

up vote 1 down vote accepted

Use

filter: ~"progid:DXImageTransform.Microsoft.gradient(startColorstr=#e4da9d, endColorstr=#c1b676)";

More about 'escaping' in LESS - http://lesscss.org/#-escaping

share|improve this answer
nice. thank you. – dardub Nov 14 '11 at 19:32
So, the only difference is that you wrapped the filter string in quotes and prefixed it with a ~. Why does that fix the OP's code, explain please! – markus Nov 15 '11 at 7:03
@markus It's just "escaping". If you want use not valid css syntax in less - use it. Read more about it - lesscss.org/#-escaping – fliptheweb Nov 15 '11 at 8:16
I'm not asking because I need to know, I'm asking because you can make this a real answer by explaining the mechanism behind what you posted. – markus Nov 15 '11 at 8:42
@markus ok, I will keep in mind, thx – fliptheweb Nov 15 '11 at 8:46

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.