I think the individual comparisons are good, but the conclusion is wrong. Yes, Sass is technically superior to Less; it can do a lot of things that Less cannot. That does not mean that you should use Sass over Less.<p>The truth is, for 99% of use cases they are exactly the same. Sass is a bit more mature and it allows more programming, so it is potentially more powerful than Less, but that also allows it to deviate for CSS further, which is not necessarily a good thing if you have to work with people who only know CSS.<p>I personally use Less because it helps me develop faster. Less is implemented in JavaScript, which means it can run in the browser. Less.js' "watch mode" is awesome for speeding up development: save your .less stylesheet and the browser immediately shows the new styles. This is something SASS cannot do and.<p>Finally, to correct some factual errors in the article: Less <i>does</i> allow some programming, loops etc. It's just incredibly awkward and barely useful, but you can use JavaScript (I used that to make this: <a href="https://github.com/micheljansen/dynamicgif.less" rel="nofollow">https://github.com/micheljansen/dynamicgif.less</a>). Also, the "Helping with CSS3" point is moot if you use <a href="http://lessprefixer.com/" rel="nofollow">http://lessprefixer.com/</a> and keep that updated.