1.

List Out The Differences Between Less And Sass?

Answer»

Each style-sheet language is good in their perspective and use; however there are few differences in their usage.

LESS

  • LESS uses JavaScript and processed at client-side
  • Variable names are prefaced with the @symbol
  • LESS does not inherit multiple selectors with one set of PROPERTIES
  • LESS does not work with “unknown” units NEITHER it returns syntax error notification for incompatible units or math’s RELATED syntax error.

Sass

  • Sass is coded in Ruby and THUS processed to server-side
  • Variable name are prefaced with $ symbol
  • Sass inherits multiple selectors with one set of properties
  • Sass allows you to work with “unknown” units ALSO returns a syntax error notification for incompatible units.

Each style-sheet language is good in their perspective and use; however there are few differences in their usage.

LESS

Sass



Discussion

No Comment Found