Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What are the best ways to use LESS for CSS.

  • Basically should the Devs write a Less File and then have it compile for production
  • Should I link the LESS code and the javascript file.
  • Or should I skip the LESS rout altogether and just remake the classes

I am trying to wrangle together some rather sloppy css and want to get control of it before making major improvements. I think it would be very good to have site wide variable so Less seems like a good thing with the variables and nesting.

I am replacing a lot of the background images with css gradients and box shadows so I am also trying to get rid of the vendor prefixes. Sometimes I see what kindof looks like class overload but is it bad to append a lot of classes to an element such as

<div class="comment dark-shadow round-corners"></div>
share|improve this question
1  
I wouldn't call 3 classes "a lot." – Matt Ball May 24 '11 at 2:13
Well thats what I am trying to get a feel for how many classes are too many. – BillPull May 24 '11 at 2:22
Also how specific should these classes be. For example .box-shadow .3pxbox-shadow .3px-box-shadow-blue – BillPull May 24 '11 at 2:25

2 Answers

up vote 10 down vote accepted

Less is a great styling language. I use it extensively, and it really helps with code maintainability, as well as with speed of writing the styles.

I personally feel that your styles should not be dependent on javascript to render, so I use the less.app to compile all my LESS into CSS. I rest more peacefully knowing that all my CSS is there and that it works correctly before I put anything "live".

If you are interested I have also been compiling a LESS mixin library that can be very useful: https://github.com/jdmiller82/-lessins-

share|improve this answer
I'd now recommend using Codekit instead of Less.app. It is by the same developer, but Codekit adds SO much more, including SASS and coffeescript processing, and much, much more. – Jonathan Miller Mar 12 '12 at 17:56
By the way the less.app is free and you can get it here: incident57.com/less – Hugo Gameiro Jun 8 '12 at 2:39

I agree with Jonathan, I don't think you should depend on the users browser to render the styles.

I came up with a solution that uses node.js on the server to intercept requests like styles.css and try to find the equivalent .less file (in this case styles.less) and parse it and return it as CSS.

So on your server you would just have styles.less but you could request the URL example.com/styles.css and get the parsed LESS file. That way the integration is seamless for the rest of your application and it doesn't require the user has JavaScript enabled either.

You don't have to be using node.js for the rest of your app either. I did this in a PHP application.

You can read my tutorial here: http://programming-perils.com/155/parse-less-files-on-the-fly-and-serve-them-as-css/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.