<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Sass vs. LESS</title>
	<atom:link href="http://css-tricks.com/sass-vs-less/feed/" rel="self" type="application/rss+xml" />
	<link>http://css-tricks.com/sass-vs-less/</link>
	<description>Tips, Tricks, and Techniques on using Cascading Style Sheets.</description>
	<lastBuildDate>Thu, 20 Jun 2013 11:31:28 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: XiaoweiLi</title>
		<link>http://css-tricks.com/sass-vs-less/#comment-180031</link>
		<dc:creator>XiaoweiLi</dc:creator>
		<pubDate>Wed, 04 Jul 2012 09:26:27 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=16922#comment-180031</guid>
		<description><![CDATA[in less 
&lt;pre&gt;
.loopingClass (@index) when (@index &gt; 0) {
  .myclass {z-index: @index }
  .loopingClass(@index - 1);
}
.loopingClass (0) {}
.loopingClass (3);
&lt;/pre&gt;
it will output three class having the same name, but…for what?
&lt;pre&gt;
.myclass {z-index: 3;}
.myclass {z-index: 2;}
.myclass {z-index: 1;}
&lt;/pre&gt;]]></description>
		<content:encoded><![CDATA[<p>in less </p>
<pre>
.loopingClass (@index) when (@index &gt; 0) {
  .myclass {z-index: @index }
  .loopingClass(@index - 1);
}
.loopingClass (0) {}
.loopingClass (3);
</pre>
<p>it will output three class having the same name, but…for what?</p>
<pre>
.myclass {z-index: 3;}
.myclass {z-index: 2;}
.myclass {z-index: 1;}
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Torkil Johnsen</title>
		<link>http://css-tricks.com/sass-vs-less/#comment-176550</link>
		<dc:creator>Torkil Johnsen</dc:creator>
		<pubDate>Wed, 13 Jun 2012 06:06:48 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=16922#comment-176550</guid>
		<description><![CDATA[Is it syntax highlighting you&#039;re after? Both LESS and the SCSS-syntax of Sass are supersets of CSS, so you don&#039;t need any particular syntax highlighter. Just use the CSS syntax highlighting.

If you need a compiler for LESS or Sass, I recommend using the command-line as outlined in the tutorials, or look into Codekit.]]></description>
		<content:encoded><![CDATA[<p>Is it syntax highlighting you&#8217;re after? Both LESS and the SCSS-syntax of Sass are supersets of CSS, so you don&#8217;t need any particular syntax highlighter. Just use the CSS syntax highlighting.</p>
<p>If you need a compiler for LESS or Sass, I recommend using the command-line as outlined in the tutorials, or look into Codekit.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Deepak</title>
		<link>http://css-tricks.com/sass-vs-less/#comment-176548</link>
		<dc:creator>Deepak</dc:creator>
		<pubDate>Wed, 13 Jun 2012 06:00:18 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=16922#comment-176548</guid>
		<description><![CDATA[anyone knows the css editor for LESS and SAAS? I use Adobe Dreamweaver CS5 but it doesn&#039;t support yet..]]></description>
		<content:encoded><![CDATA[<p>anyone knows the css editor for LESS and SAAS? I use Adobe Dreamweaver CS5 but it doesn&#8217;t support yet..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Maedi</title>
		<link>http://css-tricks.com/sass-vs-less/#comment-175721</link>
		<dc:creator>Maedi</dc:creator>
		<pubDate>Sat, 09 Jun 2012 13:34:45 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=16922#comment-175721</guid>
		<description><![CDATA[Just one more vote for Stylus! Its simple syntax makes reading and writing mixins and extended classes a breeze. 

Stylus feels more like coding too, for example instead of creating a variable the &#039;CSS&#039; way:
&lt;code&gt;$var: 5px&lt;/code&gt;
You do:
&lt;code&gt;var = 5px&lt;/code&gt;]]></description>
		<content:encoded><![CDATA[<p>Just one more vote for Stylus! Its simple syntax makes reading and writing mixins and extended classes a breeze. </p>
<p>Stylus feels more like coding too, for example instead of creating a variable the &#8216;CSS&#8217; way:<br />
<code>$var: 5px</code><br />
You do:<br />
<code>var = 5px</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Calkins</title>
		<link>http://css-tricks.com/sass-vs-less/#comment-174308</link>
		<dc:creator>Michael Calkins</dc:creator>
		<pubDate>Sun, 03 Jun 2012 17:24:22 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=16922#comment-174308</guid>
		<description><![CDATA[I&#039;m pretty sure Team Treehouse uses SASS: http://everyonecanweb.com/?imageId=1307

And if I&#039;m not mistaken that&#039;s Nick Petit&#039;s work.  But Idk if he&#039;s just a teacher there or not.]]></description>
		<content:encoded><![CDATA[<p>I&#8217;m pretty sure Team Treehouse uses SASS: <a href="http://everyonecanweb.com/?imageId=1307" rel="nofollow">http://everyonecanweb.com/?imageId=1307</a></p>
<p>And if I&#8217;m not mistaken that&#8217;s Nick Petit&#8217;s work.  But Idk if he&#8217;s just a teacher there or not.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joacim Boive</title>
		<link>http://css-tricks.com/sass-vs-less/#comment-173851</link>
		<dc:creator>Joacim Boive</dc:creator>
		<pubDate>Fri, 01 Jun 2012 06:29:42 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=16922#comment-173851</guid>
		<description><![CDATA[If you&#039;re on Mac, check out CodeKit: http://incident57.com/codekit

It rocks! Supports LESS, Stylus &amp; SASS + much-much more!]]></description>
		<content:encoded><![CDATA[<p>If you&#8217;re on Mac, check out CodeKit: <a href="http://incident57.com/codekit" rel="nofollow">http://incident57.com/codekit</a></p>
<p>It rocks! Supports LESS, Stylus &amp; SASS + much-much more!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hostinsight</title>
		<link>http://css-tricks.com/sass-vs-less/#comment-173845</link>
		<dc:creator>Hostinsight</dc:creator>
		<pubDate>Fri, 01 Jun 2012 06:08:58 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=16922#comment-173845</guid>
		<description><![CDATA[I love LESS, especially used with SimpLESS. SimpLESS checks your .less code for changes and compiles vanilla CSS on the fly! Kicking myself for not trying it sooner!]]></description>
		<content:encoded><![CDATA[<p>I love LESS, especially used with SimpLESS. SimpLESS checks your .less code for changes and compiles vanilla CSS on the fly! Kicking myself for not trying it sooner!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jacmoe</title>
		<link>http://css-tricks.com/sass-vs-less/#comment-173783</link>
		<dc:creator>jacmoe</dc:creator>
		<pubDate>Thu, 31 May 2012 22:14:20 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=16922#comment-173783</guid>
		<description><![CDATA[Sass wins because it has Compass, and because it is the default css framework for Ruby on Rails. Let&#039;s not underestimate popularity. :)
It has tons of extensions which are only a gem install away.
Ruby on Windows is dead easy to install.
I tried to get into using Less, but it doesn&#039;t even come close to Sass with regards to available plugins.
I am lazy and do not like to reinvent any wheels.
Sass-buttons, Suzy, Compass, Bourbon.
And I can choose between two syntaxes: scss or sass.
Scared of the command line?
Just run &#039;compass watch&#039; in a box and that&#039;s it.
It spits out css each time a scss/sass file has changed.
And then you just upload the generated css to your server.

How to get started?
Install Ruby.
And run this:
gem install compass
Or, if you are using Suzy:
gem install susy --pre
It will deal with all dependencies automatically.

Thanks for giving me this opportunity to evangelize Sass/Compass :)]]></description>
		<content:encoded><![CDATA[<p>Sass wins because it has Compass, and because it is the default css framework for Ruby on Rails. Let&#8217;s not underestimate popularity. :)<br />
It has tons of extensions which are only a gem install away.<br />
Ruby on Windows is dead easy to install.<br />
I tried to get into using Less, but it doesn&#8217;t even come close to Sass with regards to available plugins.<br />
I am lazy and do not like to reinvent any wheels.<br />
Sass-buttons, Suzy, Compass, Bourbon.<br />
And I can choose between two syntaxes: scss or sass.<br />
Scared of the command line?<br />
Just run &#8216;compass watch&#8217; in a box and that&#8217;s it.<br />
It spits out css each time a scss/sass file has changed.<br />
And then you just upload the generated css to your server.</p>
<p>How to get started?<br />
Install Ruby.<br />
And run this:<br />
gem install compass<br />
Or, if you are using Suzy:<br />
gem install susy &#8211;pre<br />
It will deal with all dependencies automatically.</p>
<p>Thanks for giving me this opportunity to evangelize Sass/Compass :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://css-tricks.com/sass-vs-less/#comment-173624</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Thu, 31 May 2012 06:45:17 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=16922#comment-173624</guid>
		<description><![CDATA[Here&#039;s a short gist that shows a simple comparison using LESS, Sass, and Stylus. Stylus wins:

&lt;a href=&quot;https://gist.github.com/2005644#gistcomment-89957&quot; rel=&quot;nofollow&quot;&gt;Sass vs Stylus vs LESS&lt;/a&gt;]]></description>
		<content:encoded><![CDATA[<p>Here&#8217;s a short gist that shows a simple comparison using LESS, Sass, and Stylus. Stylus wins:</p>
<p><a href="https://gist.github.com/2005644#gistcomment-89957" rel="nofollow">Sass vs Stylus vs LESS</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jimmy Rittenborg</title>
		<link>http://css-tricks.com/sass-vs-less/#comment-173550</link>
		<dc:creator>Jimmy Rittenborg</dc:creator>
		<pubDate>Thu, 31 May 2012 00:20:26 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=16922#comment-173550</guid>
		<description><![CDATA[For others interested, I&#039;ll eat my words and recommend NOT to use CSSTidy as it is very outdated, dead and doesn&#039;t support A LOT of CSS3 like, multiple background/-image declarations for vendors, keyframe animations and media queries.

A magic and pretty much self thinking CSS Compressor like that simply hasen&#039;t been invented yet - and I&#039;m pretty sure it never will be. - Because of those countless chances for breaking your code.

So when maintaining stupid stuff as a sub-theme lazily, accept a little bit bigger output (caused by the overrides) and ALWAYS compress with YUI Compressor or similar. 

There wouldn&#039;t be a need for such thing in any other cases anyway, if you did your job right.]]></description>
		<content:encoded><![CDATA[<p>For others interested, I&#8217;ll eat my words and recommend NOT to use CSSTidy as it is very outdated, dead and doesn&#8217;t support A LOT of CSS3 like, multiple background/-image declarations for vendors, keyframe animations and media queries.</p>
<p>A magic and pretty much self thinking CSS Compressor like that simply hasen&#8217;t been invented yet &#8211; and I&#8217;m pretty sure it never will be. &#8211; Because of those countless chances for breaking your code.</p>
<p>So when maintaining stupid stuff as a sub-theme lazily, accept a little bit bigger output (caused by the overrides) and ALWAYS compress with YUI Compressor or similar. </p>
<p>There wouldn&#8217;t be a need for such thing in any other cases anyway, if you did your job right.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk (User agent is rejected)
Content Delivery Network via cdn.css-tricks.com

 Served from: css-tricks.com @ 2013-06-20 04:33:09 by W3 Total Cache -->