less Getting started with less

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Insert
> Step 2: And Like the video. BONUS: You can also share it!

Remarks

Less is an open-source pre-processor. It makes writing and maintaining CSS easier by allowing the author to define and use variables, mixins etc. It also has features like Guards using which conditional styles can be written, Loops which help to keep the code DRY and a lot of in-built functions to perform math operations, string and color manipulations etc.

Not to be confused with the Unix tool of the same name.

Versions

VersionRelease Date
2.7.12016-05-09
2.7.02016-05-07
2.6.12016-03-04
2.6.02016-01-29
2.5.32015-09-25
2.5.22015-09-24
2.5.12015-05-21
2.5.02015-04-03
2.4.02015-02-07
2.3.12015-01-28
2.3.02015-01-27
2.2.02015-01-04
2.1.22014-12-20
2.1.12014-11-27
2.1.02014-11-23
2.0.02014-11-09
1.7.52014-09-03
1.7.42014-07-27
1.7.32014-06-22
1.7.22014-06-19
1.7.12014-06-08
1.7.02014-02-27
1.6.32014-02-08
1.6.22014-02-02
1.6.12014-01-12
1.6.02014-01-01
1.5.12013-11-17
1.5.02013-10-21
1.4.22013-07-20
1.4.12013-07-05
1.4.02013-06-05
1.3.32012-12-30
1.3.22012-12-28
1.3.12012-10-18
1.3.02012-03-10
1.2.12012-01-15
1.2.02012-01-07

The change log for all the versions can be found in the official GitHub page.

Compiling a Less file from the command line

lessc [options] <source> [destination]
 

The above command is used to compile Less files in the command line. Options are the various settings that the compiler should use either during compilation or after compilation. Options include -x or --compress for compressing or minifying the output CSS file, -sm=on or --strict-math=on for applying math operations only on values enclosed within parenthesis etc. The next comes the path of the source Less file that has to be compiled. Destination is the path and name of the output file. If this is not provided the output is printed out in the command line window itself.

Consider the below Less code

/* Filename: test.less */
#demo {
 color: @color;
 background: beige;
 width: 100% / 4;
}
@color: red;
 

Print compiled CSS in Command window:

When the following command is executed in the command line, the test.less file would be compiled and the output will be printed directly on the command window as no destination path is provided.

lessc test.less
 

Output:

#demo {
  color: red;
  background: beige;
  width: 25%;
}
 

Create a CSS file and write compiled output to the file:

The same file when compiled with the below statement will create a file named test.css in the same path as the test.less file and print/write the output to that CSS file.

lessc test.less > test.css
 

Create a CSS file and minify it:

The below command will print/write the output to a CSS file and also compress it at the end.

lessc -x test.less > test.css
 

Output:

#demo{color:red;background:beige;width:25%}
 

With Strict Math option enabled:

When the strict match option is enabled, the output will be as follows because the values for width is not enclosed within braces.

lessc -sm=on test.less > test.css
 

Output:

#demo {
  color: red;
  background: beige;
  width: 100% / 4;
}
 

Installation or Setup

Less has been one of the most popular CSS Pre-processors, and has also been widely deployed in numerous front-end frameworks like Bootstrap, Foundation, etc. The Less Compiler is a JavaScript based compiler, which can be obtained from a Content Delivery Network:

<script src="//cdnjs.cloudflare.com/ajax/libs/less.js/2.5.1/less.min.js"></script>
 

You need to add your Less document before the JavaScript compiler is loaded, using <link /> tag. The Less stylesheet along with the compiler looks like this:

<link rel="stylesheet/less" type="text/css" href="main.less" />
<script src="//cdnjs.cloudflare.com/ajax/libs/less.js/2.5.1/less.min.js"></script>
 

Note: Compiling Less in the client-side (or in the browser) is generally not recommended. It should used only for development or when using dynamic settings that make it not possible to compile server-side.

Joining Files - Imports

The @import statement allows you to insert CSS/Less code from another file into your own CSS/Less file.

.foo {
  background: #900;
}
@import "my-other-css-file.css";
@import "my-other-less-file.less";
 

Nesting in Less

In Less you can write much more simple CSS rules and also keep them well formatted, so instead of writing this code:

CSS

.item {
  border: 1px solid;
  padding: 4px;
}
.item .content, .item .image {
  float: left;
}
.item .content {
  font-size: 12px;
}
.item .image {
  width: 300px;
}
 

you can just write this:

Less

.item {
  border: 1px solid;
  padding: 4px;
  .content, .image {
    float: left;
  }
  .content {
    font-size: 12px;
  }
  .image {
    width: 300px;
  }
}
 

and Less will compile that code into the normal CSS we all know.

Sample Less Syntax

The following example is a sample Less file which shows how variables are declared and used, how mixins are defined and called in Less.

/* Variables */
@color-base: #87ceeb;

/* Simple mixin to set border */

.set-border(@width; @style; @color) {
  border: @width @style darken(@color, 10%);
}

/* Main CSS */
.class1 {
  background-color: @color-base;
  .set-border(1px; solid; @color-base);
  .class2 {
    background-color: #fff;
    color: @color-base;
    .set-border(1px; solid; #fff);
  }
}
 

The above code when compiled will produce the following CSS: (comments are stripped for brevity)

.class1 {
  background-color: #87ceeb;
  border: 1px solid #5bbce4;
}
.class1 .class2 {
  background-color: #fff;
  color: #87ceeb;
  border: 1px solid #e6e6e6;
}
 


Got any less Question?