Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

LESS vs. COMPASS

For a rails CSS framework for an existing app, which one do you prefer - LESS or COMPASS?

like image 787
keruilin Avatar asked Oct 31 '10 12:10

keruilin


1 Answers

Less and Compass are not really direct competitors.

LESS is a CSS engine. Compass is more a toolbox around SASS/SCSS and Blueprint CSS framewok. So if you want to use Blueprint in your project, use Compass.

You should take a look at LESS syntax and SCSS syntax and choose the one your prefer. But they both are now a superset of CSS 3 and they have more or less the same features.

Another thing to know is that SCSS/SASS is still included in HAML gem. So if you want to use HAML...

like image 174
Nicolas Blanco Avatar answered Oct 14 '22 09:10

Nicolas Blanco