The single biggest difference is in available style libraries in my opinion. I could probably never use Less because my workflow has become so heavily intertwined with Bourbon, Susy, and Compass.
Thanks for sharing!
ie. Mixins
LESS
.border-radius(@radius){ border-radius: @radius; } .border-radius(5px);
@mixin border-radius(@radius){ border-radius: @radius; } @include border-radius(5px);
The biggest difference is being able remove curly braces and semi-colons, which can speed up your development
h1 font-weight: bold color: red
http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html#ex...
Thank you!!!
The single biggest difference is in available style libraries in my opinion. I could probably never use Less because my workflow has become so heavily intertwined with Bourbon, Susy, and Compass.