css2less icon indicating copy to clipboard operation
css2less copied to clipboard

Css to LessCss converter

Results 1 css2less issues
Sort by recently updated
recently updated
newest added

Less is known to behave wierd on styles like ``` .box{ width: calc(100%-30px); } ``` wich results in something like ``` .box{ width: calc(70%); } ``` as described here: https://stackoverflow.com/questions/11972084/less-aggressive-compilation-with-css3-calc...