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

I am investigating the best CSS framework to choose for a particular django project but also for web projects in general...

So what are the advantages, what are the disadvantages of each of them? Are there other CSS frameworks worth mentioning? But most importantly which one has more traction and has the best chances of becoming the dominant/most widespread one?

share|improve this question
1  
discussion about the subject: css-tricks.com/sass-vs-less – Johe Green May 18 '12 at 10:08
11  
How is this not a constructive question? It might not perfectly fit SO rules, but it is one of those outliers that does fit the purpose and spirit of SO. Wish people could use common sense before closing a question. – Matthew Patrick Cashatt Nov 16 '12 at 13:59
1  
@MatthewPatrickCashatt, Agree with you. Quora is better for these kind of questions. – SunnyShah Dec 11 '12 at 13:20
9  
so irritating when they close stuff as not constructive on the most interesting questions, what's wrong with a question that has no binary answer? – infensus Feb 1 at 16:07
1  
It feels to me like every other question I visit on Stack Overflow has been closed as not constructive. – Gordon Isnor Apr 12 at 13:02

closed as not constructive by Brian Driscoll, Strelok, corroded, mliebelt, BoltClock Dec 7 '11 at 8:19

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

3 Answers

up vote 48 down vote accepted

There are many CSS Preprocessors available, like Less, Sass, Emastic, 960.gs, Compass (CSS Authoring Framework), Unobtrusive, BluePrint etc.

For Django particularly, Sass and Compass works great. Here is a good article on this: Using Sass & Compass with Django

these are some pages having a great comparison of Sass and Less, which you should give a go through:

Smashing Magazine - Sass/Less Comparison

Comparison of Sass and Less

Hope this helps .

share|improve this answer
17  
Sir, you are confusing two things. Sass and Less are not frameworks but preprocessors; they extend CSS with their own syntax and can be used with our without any above mentioned framework. – jholster Jan 19 '12 at 13:12
5  
Compass is not a preprocessor like LESS and SASS. Compass uses Sass, Compass is a CSS Authoring Framework. – Ed . Jun 12 '12 at 10:08
@Ed. Actually the term i previously used was frameworks but due to some confusion changed it. Have Updated my answer. Thanks alot :) – AlphaMale Jun 13 '12 at 12:16

This question is a little subjective, but I'm a big fan of Less. I like that it can run on the client using a JavaScript library, on the server width node/rails/.net, or via desktop compilers. I like that I don't need ruby to compile it.

As usual, Smashing Magazine did a good write-up on the subject: http://coding.smashingmagazine.com/2011/09/09/an-introduction-to-less-and-comparison-to-sass/

share|improve this answer
another vote for this answer. Less is useful enough, close to CSS and it can run on client ( great ) – Vdt Apr 24 '12 at 8:31
9  
You shouldn't run LESS on the client. Bad for performance and bad for printing. Don't know why people continue advocating this.... – mlissner May 2 '12 at 22:17
1  
Oh I'm not saying it's a good idea. But it is flexible enough to be used like this. – Justin Beckwith May 2 '12 at 23:58
13  
It's a brilliant idea. In development environments, of course. You wouldn't want it in production, but anything that shaves seconds off your development cycle is invaluable. – Kris Jenkins May 7 '12 at 7:22
3  
FRY, with Sass, there is compass watch that recompiles the CSS files when the .sass or .scss files are changed. – vdboor May 22 '12 at 17:56

as AlphaMale suggests there are many css frameworks so i will not list them again But if it may help.

Twitter uses less. look at this bootstrap from twitter built using less http://twitter.github.com/bootstrap/

LESS on Wikipedia

Comparision to Sass

Both Sass and LESS are CSS preprocessors, which allow writing clean CSS in a programming construct instead of static rules.

LESS is inspired by Sass. Sass was designed to both simplify and extend CSS, so things like curly braces were removed from the syntax. LESS was designed to be as close to CSS as possible, so the syntax is identical to existing CSS code. As a result, existing CSS can be used as valid LESS code.

The newer versions of Sass also introduced a CSS-like syntax called SCSS (Sassy CSS).

Comparision to ZUSS

ZUSS is inspired by LESS. The syntax is similar, except it is tailored for Java programming language. Unlike LESS, it doesn't require the JavaScript interpreter (Rhino), and it allows ZUSS to invoke Java methods directly.

Also look at this link https://gist.github.com/674726 for less vs saas syntax comparition

share|improve this answer

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