Answer the question
In order to leave comments, you need to log in
There are no mixins in less, and different variants of border-radius appear in css, etc. How is the less file compiled?
Hello.
I was given a site with css and less. I want to edit less and compile to css so as not to lose less.
The only problem is that it is not clear how it is compiled. The fact is that there are no impurities in less, and a set of properties for different browsers appears in css. For example, in less is
border-radius: 10px;, and in css it is compiled to
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px
Also at the bottom of the css is the code "sourceMappingURL=data:application/json;base64,..."
How could this less be compiled?
Answer the question
In order to leave comments, you need to log in
It doesn't matter what less is compiled with, because then the compilation result is run through the autoprefixer .
Also at the bottom of the css is the code "sourceMappingURL=data:application/json;base64,..."And this is called Source Maps .
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question