asual / lesscss-engine

LESS Engine - A Java wrapper for less.js
http://www.asual.com/lesscss
Apache License 2.0
220 stars 66 forks source link

[-1vw] compiles into [-1 vw] #69

Open saturday1 opened 4 years ago

saturday1 commented 4 years ago

Hello!

I have a problem that when I write:

margin-left: -1vw;

It compiles into:

margin-left: -1 vw;

And it failes in the browser as a typo. Observe the space between the number [1] and the unit [vw]

Anyone have a solution for it?

Ps. I seems to have to be minus and vw. -10px seems to compile without space.