My intro to LESS - If you're not using it, you should be.
21–30 of 44 posts
Re: My intro to LESS - If you're not using it, you should be.
#22I just started using LESS and if you're on a Mac, I highly recommend LESS.app[1] to work with. It will automatically compile your LESS into CSS whenever you save the document in any text editor. Edit and save a page like variables.less that's included in main.less? It will auto-compile main.less, and any other LESS files that include variables.less when you save it. [1] http://incident57.com/less/
It is an essential piece of software in my workflow.
Re: My intro to LESS - If you're not using it, you should be.
#23http://code.google.com/p/closure-stylesheets/
"Closure Stylesheets is an extension to CSS that adds variables, functions, conditionals, and mixins to standard CSS. The tool also supports minification, linting, RTL flipping, and CSS class renaming. "
Re: My intro to LESS - If you're not using it, you should be.
#24I'm curious about this. Is it more than just a minor performance hit?
Re: My intro to LESS - If you're not using it, you should be.
#25See the @extend section here: http://css-tricks.com/sass-vs-less/
(Disclaimer: none. I use both, depending on project.)
Re: My intro to LESS - If you're not using it, you should be.
#26Re: My intro to LESS - If you're not using it, you should be.
#27And what if we're using SASS?
Re: My intro to LESS - If you're not using it, you should be.
#28I'm never going to write raw CSS again.
I grabbed CodeKit, so I might try SASS the next time I'm building something on the web. I haven't really seen anything in the SASS vs. LESS shootouts that makes me go "dang I wish I could do that"; my CSS is relatively straightforward. Just having named colors, a couple color mixing functions, mixins, and nested syntax helped a LOT.
Re: My intro to LESS - If you're not using it, you should be.
#29I was introduced to LESS earlier this year and loved it. When I had to rebuild my personal site this past month, I did it in LESS instead of CSS and probably cut my development time in half. I'm never going to write raw CSS again. I grabbed CodeKit, so I might try SASS the next time I'm building something on the web. I haven't really seen anything in the SASS vs. LESS shootouts that makes me go "dang I wish I could d…
It's true selector inheritance that will change the way you author styles.
Re: My intro to LESS - If you're not using it, you should be.
#30> It’s also extremely important to not keep your less.js file operating during production mode. I'm curious about this. Is it more than just a minor performance hit?
Compiling and running LESS on the fly in production might, besides the extended load time, increase the chances for a flash of unstyled content. If this makes you nervous, don't run LESS on the fly in production.