On May 3, 2:49 pm, Sven Nicolai Viig <
sven.v...@gmail.com> wrote:
> Try to escape it, from the
http://lesscss.org/documentation
> ---
> Escaping
>
> Sometimes you might need to output a CSS value which is either not valid
> CSS syntax, or uses proprietary syntax which LESS doesn’t recognize.
>
> To output such value, we place it inside a string prefixed with ~, for
> example:
>
> .class {
> filter: ~"ms:alwaysHasItsOwnSyntax.For.Stuff()";}
>
> This is called an “escaped value”, which will result in:
>
> .class {
> filter: ms:alwaysHasItsOwnSyntax.For.Stuff();}
>
> ---
>