top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is the need of less.js ?

+3 votes
251 views

How can we create variables in Less.JS ?

posted Dec 29, 2014 by Muskan

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+2 votes
 
Best answer

English meaning of LESS means minimizing something. LESS.JS simplifies your CSS by adding extra capabilities to CSS like variables, mixin's etc. LESS.JS makes your CSS dynamic. LESS extends your CSS and simplifies your CSS.
For more information :http://www.dotnetinterviewquestions.in/article_what-is-the-need-of-lessjs-javascript-interview-questions_241.html

answer Dec 29, 2014 by Rahul Singh
Similar Questions
0 votes

Also,tell me what are the types of framework are there ?

+1 vote

Am confused with these functions.Can any one tell me the difference and give some example for each .

+1 vote

Tell me the difference for below two functions

$(document).ready(function() {

    alert("Function using Document Ready");

}

vs

$(function() { 
  alert("Normal function");
}
...