<?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: Kick-Start Your Project: A Collection of Handy CSS Snippets</title>
	<atom:link href="http://tympanus.net/codrops/2012/10/25/kick-start-your-project-a-collection-of-handy-css-snippets/feed/" rel="self" type="application/rss+xml" />
	<link>http://tympanus.net/codrops/2012/10/25/kick-start-your-project-a-collection-of-handy-css-snippets/</link>
	<description>Useful resources and inspiration for creative minds</description>
	<lastBuildDate>Sat, 25 May 2013 17:03:38 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: MechanisM</title>
		<link>http://tympanus.net/codrops/2012/10/25/kick-start-your-project-a-collection-of-handy-css-snippets/comment-page-2/#comment-433551</link>
		<dc:creator>MechanisM</dc:creator>
		<pubDate>Sun, 10 Mar 2013 17:27:44 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=11619#comment-433551</guid>
		<description><![CDATA[For &quot;media print&quot; I see these lines:
&lt;code&gt;
background: none !important;
		color: black !important;
&lt;/code&gt;
what if I&#039;m using custom theme in my system(lets say it is Ubuntu with dark GTK theme)? so default browser backgrounds will be black and black text on it?
be careful with browsers and user themes. coz a lot of times I see black text inside black inputs/textareas and so on..]]></description>
		<content:encoded><![CDATA[<p>For &#8220;media print&#8221; I see these lines:<br />
<code><br />
background: none !important;<br />
		color: black !important;<br />
</code><br />
what if I&#8217;m using custom theme in my system(lets say it is Ubuntu with dark GTK theme)? so default browser backgrounds will be black and black text on it?<br />
be careful with browsers and user themes. coz a lot of times I see black text inside black inputs/textareas and so on..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dougieladd</title>
		<link>http://tympanus.net/codrops/2012/10/25/kick-start-your-project-a-collection-of-handy-css-snippets/comment-page-2/#comment-432435</link>
		<dc:creator>Dougieladd</dc:creator>
		<pubDate>Sat, 16 Feb 2013 21:12:19 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=11619#comment-432435</guid>
		<description><![CDATA[I&#039;ve just discovered &quot;tympanus.net&quot; (today in fact). I don&#039;t know how I&#039;ve done without it for all this time... The quality of the tutorial writing is excellent (albeit a little above my head sometimes). But I&#039;ll enjoy sifting through the previous articles and tutorials. 
Great tutorial thanks... and &quot;hello&quot; :)]]></description>
		<content:encoded><![CDATA[<p>I&#8217;ve just discovered &#8220;tympanus.net&#8221; (today in fact). I don&#8217;t know how I&#8217;ve done without it for all this time&#8230; The quality of the tutorial writing is excellent (albeit a little above my head sometimes). But I&#8217;ll enjoy sifting through the previous articles and tutorials.<br />
Great tutorial thanks&#8230; and &#8220;hello&#8221; :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ricardo Zea</title>
		<link>http://tympanus.net/codrops/2012/10/25/kick-start-your-project-a-collection-of-handy-css-snippets/comment-page-2/#comment-432358</link>
		<dc:creator>Ricardo Zea</dc:creator>
		<pubDate>Thu, 14 Feb 2013 17:34:37 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=11619#comment-432358</guid>
		<description><![CDATA[For image replacement, there are 2 other techniques, both from Nicholas Gallagher:

Method 1 (not used by HTML5 Boilerplate anymore though):

&lt;code&gt;.ir {
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
}&lt;/code&gt;
http://nicolasgallagher.com/another-css-image-replacement-technique/

Method 2 (currently used by HTML5 Boilerplate at the moment of writing this post - 2/14/13): 

&lt;code&gt;.ir {
    overflow: hidden;
    *text-indent: -999em;
}

.ir:before {
    content: &quot;&quot;;
    display: block;
    width: 0;
    height: 100%;
}&lt;code&gt;
https://github.com/h5bp/html5-boilerplate/issues/1149]]></description>
		<content:encoded><![CDATA[<p>For image replacement, there are 2 other techniques, both from Nicholas Gallagher:</p>
<p>Method 1 (not used by HTML5 Boilerplate anymore though):</p>
<p><code>.ir {<br />
    font: 0/0 a;<br />
    text-shadow: none;<br />
    color: transparent;<br />
}</code><br />
<a href="http://nicolasgallagher.com/another-css-image-replacement-technique/" rel="nofollow">http://nicolasgallagher.com/another-css-image-replacement-technique/</a></p>
<p>Method 2 (currently used by HTML5 Boilerplate at the moment of writing this post &#8211; 2/14/13): </p>
<p><code>.ir {<br />
    overflow: hidden;<br />
    *text-indent: -999em;<br />
}</p>
<p>.ir:before {<br />
    content: "";<br />
    display: block;<br />
    width: 0;<br />
    height: 100%;<br />
}</code><code><br />
<a href="https://github.com/h5bp/html5-boilerplate/issues/1149" rel="nofollow">https://github.com/h5bp/html5-boilerplate/issues/1149</a></code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ricardo Zea</title>
		<link>http://tympanus.net/codrops/2012/10/25/kick-start-your-project-a-collection-of-handy-css-snippets/comment-page-2/#comment-432149</link>
		<dc:creator>Ricardo Zea</dc:creator>
		<pubDate>Fri, 08 Feb 2013 21:48:52 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=11619#comment-432149</guid>
		<description><![CDATA[I&#039;ve never heard or read about other browsers understanding the &lt;code&gt;zoom&lt;/code&gt; property other than IE. 

I&#039;ve always simply used &lt;code&gt;{ zoom:1; }&lt;/code&gt; without any repercussions in Firefox, Safari, Chrome or Opera whatsoever.]]></description>
		<content:encoded><![CDATA[<p>I&#8217;ve never heard or read about other browsers understanding the <code>zoom</code> property other than IE. </p>
<p>I&#8217;ve always simply used <code>{ zoom:1; }</code> without any repercussions in Firefox, Safari, Chrome or Opera whatsoever.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: asrulalfi</title>
		<link>http://tympanus.net/codrops/2012/10/25/kick-start-your-project-a-collection-of-handy-css-snippets/comment-page-2/#comment-428339</link>
		<dc:creator>asrulalfi</dc:creator>
		<pubDate>Mon, 26 Nov 2012 03:22:44 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=11619#comment-428339</guid>
		<description><![CDATA[great stuff to learn. keep sharing]]></description>
		<content:encoded><![CDATA[<p>great stuff to learn. keep sharing</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TrickToDesign</title>
		<link>http://tympanus.net/codrops/2012/10/25/kick-start-your-project-a-collection-of-handy-css-snippets/comment-page-2/#comment-428320</link>
		<dc:creator>TrickToDesign</dc:creator>
		<pubDate>Sun, 25 Nov 2012 06:10:03 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=11619#comment-428320</guid>
		<description><![CDATA[Great and useful list of code. Really helped me ...thanks a lot..]]></description>
		<content:encoded><![CDATA[<p>Great and useful list of code. Really helped me &#8230;thanks a lot..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: seem</title>
		<link>http://tympanus.net/codrops/2012/10/25/kick-start-your-project-a-collection-of-handy-css-snippets/comment-page-2/#comment-427723</link>
		<dc:creator>seem</dc:creator>
		<pubDate>Sat, 17 Nov 2012 06:59:43 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=11619#comment-427723</guid>
		<description><![CDATA[Real usefull, but we should just encourage people to use them thinking in proper working methods and time consuming projects, of course with the use of SASS &amp; .scss.
Thanks for sharing great job man!]]></description>
		<content:encoded><![CDATA[<p>Real usefull, but we should just encourage people to use them thinking in proper working methods and time consuming projects, of course with the use of SASS &amp; .scss.<br />
Thanks for sharing great job man!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: YJ Tso</title>
		<link>http://tympanus.net/codrops/2012/10/25/kick-start-your-project-a-collection-of-handy-css-snippets/comment-page-2/#comment-427640</link>
		<dc:creator>YJ Tso</dc:creator>
		<pubDate>Thu, 15 Nov 2012 08:46:51 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=11619#comment-427640</guid>
		<description><![CDATA[This is a nice collection! Expands on my own, so a big Thanks!

One note: many CSS preprocessors require Ruby to be installed on your server. If it&#039;s not, that can be a real pain. 

&lt;a href=&quot;http://modx.com&quot; title=&quot;MODX CMS&quot; rel=&quot;nofollow&quot;&gt;MODX CMS&lt;/a&gt; natively supports CSS as a content type (as well as HTML, JS, XML, RSS, etc) so I often leverage MODX&#039;s powerful PHP framework to preprocess my stylesheets.

#foodforthought

Thanks again!]]></description>
		<content:encoded><![CDATA[<p>This is a nice collection! Expands on my own, so a big Thanks!</p>
<p>One note: many CSS preprocessors require Ruby to be installed on your server. If it&#8217;s not, that can be a real pain. </p>
<p><a href="http://modx.com" title="MODX CMS" rel="nofollow">MODX CMS</a> natively supports CSS as a content type (as well as HTML, JS, XML, RSS, etc) so I often leverage MODX&#8217;s powerful PHP framework to preprocess my stylesheets.</p>
<p>#foodforthought</p>
<p>Thanks again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard</title>
		<link>http://tympanus.net/codrops/2012/10/25/kick-start-your-project-a-collection-of-handy-css-snippets/comment-page-2/#comment-427358</link>
		<dc:creator>Richard</dc:creator>
		<pubDate>Fri, 09 Nov 2012 17:56:31 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=11619#comment-427358</guid>
		<description><![CDATA[Your print stylesheet looks slightly off - you&#039;re missing the &quot;:after&quot; pseudo-element for the &quot;#&quot; and &quot;javascript:&quot; links, and you&#039;re only matching links where the attribute is *exactly* equal to &quot;#&quot; or &quot;javascript:&quot;. Presumably the selector should be:

a[href^=&quot;#&quot;]:after, a[href^=&quot;javascript:&quot;]:after]]></description>
		<content:encoded><![CDATA[<p>Your print stylesheet looks slightly off &#8211; you&#8217;re missing the &#8220;:after&#8221; pseudo-element for the &#8220;#&#8221; and &#8220;javascript:&#8221; links, and you&#8217;re only matching links where the attribute is *exactly* equal to &#8220;#&#8221; or &#8220;javascript:&#8221;. Presumably the selector should be:</p>
<p>a[href^="#"]:after, a[href^="javascript:"]:after</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Julien Jolly</title>
		<link>http://tympanus.net/codrops/2012/10/25/kick-start-your-project-a-collection-of-handy-css-snippets/comment-page-2/#comment-427297</link>
		<dc:creator>Julien Jolly</dc:creator>
		<pubDate>Fri, 09 Nov 2012 10:03:53 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=11619#comment-427297</guid>
		<description><![CDATA[This is the best CSS oriented article I have read in a long time. 
Thx man!]]></description>
		<content:encoded><![CDATA[<p>This is the best CSS oriented article I have read in a long time.<br />
Thx man!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 6/23 queries in 0.011 seconds using disk: basic
Content Delivery Network via codropspz.tympanus.netdna-cdn.com

 Served from: tympanus.net @ 2013-05-25 22:43:55 by W3 Total Cache -->