treehouse : what would you like to learn today?
Web Design Web Development iOS Development

lesscss and regular css

  • hey guys, I read about lesscss, I understand the ideia and how to use it but I wanna hear yours opinion about lesscss...

  • It's fantastic, though I prefer SASS/SCSS.

  • thedoc, it´s a bad practice if I don´t compile the .less file to a .css file?

  • The .less file your building should always be compiled for the site to load on a live server, using something like NodeJS or the JavaScript compiler is something I consider to be bad practice as only your desktop should ever have to be the source of the file been compiled.

    Also like TheDoc I prefer SASS with compass as it provides a lot more power and functionality without the need of ever having to worry about the hard things like remembering CSS3 properties.

  • thanks for yours opinion...