Back to the top!

LESS - WDDATFT Library


Less: Learner Style Sheets

Less is an easy to learn language extension for CSS that makes additions to the existing CSS syntax in order to provide users with advanced capabilities and more concise coding.

Using Less...

With node.js (recommended):

With the browser (easier to use, but slower loading):

...Gives You More!

With Less, you can assign variables like so:

@width:  20px ;
@height: @width  +  20px ;

#header  {
  width:  @width ;
  height:  @height ;
}
lesscss.org

This gives the same output as:

#header  {
  width:  20px ;
  height:  40px ;
}
lesscss.org

It also gives you the ability to use nesting in combination with, or instead of, cascading, a set of mathematical operations, functions, and much more to make your coding faster, more powerful, and more concise.

Learn Less at your Leisure!


Contact Us