PHP
  Blogs
  Portals/CMS
  E-Commerce
  Forums
  Social Networking
  Frameworks
  Educational
  Video
  Image Galleries
  File Management
  Mails
  ERP
  Wikis
  Others
  Customer Support
  DB Tools
  Polls and Surveys
  Project Management
  Ad Management
  Music
  Calendars
  RSS
  Guest Books
  Gaming
JS
  Libraries
PERL
  E-Commerce
  Blogs
  
JAVA
  Project Management
  Forums
  Portals/CMS
  Blogs
PYTHON
  
LESS
Category : libraries
Version : 4.1.3
Views : 99540 Views
Ratings : 5.000 out of 5
Votes : 2 Votes
Reviews : 0 Reviews
Space Required : 0.14 MB


 5  See Demo
 Write Review  Get Support


 
Overview LESS is a dynamic stylesheet language. LESS extends CSS with dynamic behavior such as variables, mixins, operations and functions. LESS runs on both the client-side (Chrome, Safari, Firefox) and server-side, with Node.js and Rhino.

Features

  • Variables : Variables allow you to specify widely used values in a single place, and then re-use them throughout the style sheet, making global changes as easy as changing one line of code.
  • Mixins : Mixins allow you to embed all the properties of a class into another class by simply including the class name as one of its properties. It's just like variables, but for whole classes. Mixins can also behave like functions, and take arguments.
  • Nested Rules : Rather than constructing long selector names to specify inheritance, in Less you can simply nest selectors inside other selectors. This makes inheritance clear and style sheets shorter.
  • Functions & Operations : Are some elements in your style sheet proportional to other elements? Operations let you add, subtract, divide and multiply property values and colors, giving you the power to create complex relationships between properties. Operations should only be performed within parentheses in order to ensure compatibility with CSS. Functions map one-to-one with JavaScript code, allowing you to manipulate values however you want.