<?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: Floated lists with CSS3 and jQuery</title>
	<atom:link href="http://webdesignernotebook.com/css/floated-lists-with-css3-and-jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://webdesignernotebook.com/css/floated-lists-with-css3-and-jquery/</link>
	<description>Web Designer Notebook is a blog for web designers featuring topics like CSS, HTML and Wordpress, tutorials, reviews and inspiration.</description>
	<lastBuildDate>Thu, 02 Sep 2010 13:28:16 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: 40 jQuery and CSS3 Tutorials and Techniques &#171; Nap5teR</title>
		<link>http://webdesignernotebook.com/css/floated-lists-with-css3-and-jquery/#comment-8739</link>
		<dc:creator>40 jQuery and CSS3 Tutorials and Techniques &#171; Nap5teR</dc:creator>
		<pubDate>Tue, 17 Aug 2010 16:03:43 +0000</pubDate>
		<guid isPermaLink="false">http://webdesignernotebook.com/?p=938#comment-8739</guid>
		<description>[...] Floated lists with CSS3 and jQuery [...]</description>
		<content:encoded><![CDATA[<p>[...] Floated lists with CSS3 and jQuery [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mara</title>
		<link>http://webdesignernotebook.com/css/floated-lists-with-css3-and-jquery/#comment-8624</link>
		<dc:creator>Mara</dc:creator>
		<pubDate>Tue, 10 Aug 2010 17:54:38 +0000</pubDate>
		<guid isPermaLink="false">http://webdesignernotebook.com/?p=938#comment-8624</guid>
		<description>And what was this article all about? I can do floated lists with &quot;float: left&quot; and that&#039;s it.</description>
		<content:encoded><![CDATA[<p>And what was this article all about? I can do floated lists with &#8220;float: left&#8221; and that&#8217;s it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 40 jQuery and CSS3 Tutorials and Techniques &#171; Vision</title>
		<link>http://webdesignernotebook.com/css/floated-lists-with-css3-and-jquery/#comment-8291</link>
		<dc:creator>40 jQuery and CSS3 Tutorials and Techniques &#171; Vision</dc:creator>
		<pubDate>Wed, 14 Jul 2010 03:58:20 +0000</pubDate>
		<guid isPermaLink="false">http://webdesignernotebook.com/?p=938#comment-8291</guid>
		<description>[...] Floated lists with CSS3 and jQuery [...]</description>
		<content:encoded><![CDATA[<p>[...] Floated lists with CSS3 and jQuery [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 40 jQuery and CSS3 Tutorials and Techniques &#124; Programming Blog</title>
		<link>http://webdesignernotebook.com/css/floated-lists-with-css3-and-jquery/#comment-8278</link>
		<dc:creator>40 jQuery and CSS3 Tutorials and Techniques &#124; Programming Blog</dc:creator>
		<pubDate>Tue, 13 Jul 2010 00:12:18 +0000</pubDate>
		<guid isPermaLink="false">http://webdesignernotebook.com/?p=938#comment-8278</guid>
		<description>[...] Floated lists with CSS3 and jQuery [...]</description>
		<content:encoded><![CDATA[<p>[...] Floated lists with CSS3 and jQuery [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Antony Kennedy</title>
		<link>http://webdesignernotebook.com/css/floated-lists-with-css3-and-jquery/#comment-8275</link>
		<dc:creator>Antony Kennedy</dc:creator>
		<pubDate>Mon, 12 Jul 2010 13:53:29 +0000</pubDate>
		<guid isPermaLink="false">http://webdesignernotebook.com/?p=938#comment-8275</guid>
		<description>I agree with adding &quot;first&quot; or &quot;last&quot; etc, until we don&#039;t need them anymore, and my code often looks like this:

/*when our supported browsers all support nth-child, we can drop the third class*/
    	#product-cluster .product.third, #product-cluster .product:nth-child(3n) {margin-right:0;width:264px;}

And using jQuery.browser is bad practise, which is why your approach is inappropriate:

http://api.jquery.com/jQuery.browser/</description>
		<content:encoded><![CDATA[<p>I agree with adding &#8220;first&#8221; or &#8220;last&#8221; etc, until we don&#8217;t need them anymore, and my code often looks like this:</p>
<p>/*when our supported browsers all support nth-child, we can drop the third class*/<br />
    	#product-cluster .product.third, #product-cluster .product:nth-child(3n) {margin-right:0;width:264px;}</p>
<p>And using jQuery.browser is bad practise, which is why your approach is inappropriate:</p>
<p><a href="http://api.jquery.com/jQuery.browser/" rel="nofollow">http://api.jquery.com/jQuery.browser/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: johntnorris</title>
		<link>http://webdesignernotebook.com/css/floated-lists-with-css3-and-jquery/#comment-8274</link>
		<dc:creator>johntnorris</dc:creator>
		<pubDate>Mon, 12 Jul 2010 13:49:06 +0000</pubDate>
		<guid isPermaLink="false">http://webdesignernotebook.com/?p=938#comment-8274</guid>
		<description>I&#039;m all for pushing the web on, but if you provide a fallback solution that works for ALL browsers (jQuery), why have the CSS3 approach at all? All browsers will use the class-based CSS, and some will also unnecessarily use the nth-child selector CSS.

If you are going to do something like this, why not just target those browsers?:

if($.browser.msie &amp;&amp; $.browser.version &lt; 9){

$(&#039;#food li:nth-child(3n)&#039;).addClass(&#039;end-row&#039;);
	$(&#039;#food li:nth-child(3n+1)&#039;).addClass(&#039;first-row&#039;);

}

Then you&#039;re not forcing unnecessary javascript or additional markup onto the well behaved browsers, and you genuinely will be providing a CSS3 solution for some browsers, and a javascript solution for the rest.

Personally, I&#039;m all for adding classes of &quot;first&quot; and &quot;last&quot; in the markup. It&#039;s dirty, but mostly semantic and most performant, and works in all browsers regardless of whether the user has javascript enabled/not.</description>
		<content:encoded><![CDATA[<p>I&#8217;m all for pushing the web on, but if you provide a fallback solution that works for ALL browsers (jQuery), why have the CSS3 approach at all? All browsers will use the class-based CSS, and some will also unnecessarily use the nth-child selector CSS.</p>
<p>If you are going to do something like this, why not just target those browsers?:</p>
<p>if($.browser.msie &amp;&amp; $.browser.version &lt; 9){</p>
<p>$(&#039;#food li:nth-child(3n)&#039;).addClass(&#039;end-row&#039;);<br />
	$(&#039;#food li:nth-child(3n+1)&#039;).addClass(&#039;first-row&#039;);</p>
<p>}</p>
<p>Then you&#039;re not forcing unnecessary javascript or additional markup onto the well behaved browsers, and you genuinely will be providing a CSS3 solution for some browsers, and a javascript solution for the rest.</p>
<p>Personally, I&#039;m all for adding classes of &quot;first&quot; and &quot;last&quot; in the markup. It&#039;s dirty, but mostly semantic and most performant, and works in all browsers regardless of whether the user has javascript enabled/not.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 40 jQuery and CSS3 Tutorials and Techniques &#183; rogdykker</title>
		<link>http://webdesignernotebook.com/css/floated-lists-with-css3-and-jquery/#comment-8270</link>
		<dc:creator>40 jQuery and CSS3 Tutorials and Techniques &#183; rogdykker</dc:creator>
		<pubDate>Mon, 12 Jul 2010 07:35:24 +0000</pubDate>
		<guid isPermaLink="false">http://webdesignernotebook.com/?p=938#comment-8270</guid>
		<description>[...] Floated lists with CSS3 and jQuery [...]</description>
		<content:encoded><![CDATA[<p>[...] Floated lists with CSS3 and jQuery [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 40 jQuery and CSS3 Tutorials and Techniques - Speckyboy Design Magazine</title>
		<link>http://webdesignernotebook.com/css/floated-lists-with-css3-and-jquery/#comment-8268</link>
		<dc:creator>40 jQuery and CSS3 Tutorials and Techniques - Speckyboy Design Magazine</dc:creator>
		<pubDate>Mon, 12 Jul 2010 07:15:34 +0000</pubDate>
		<guid isPermaLink="false">http://webdesignernotebook.com/?p=938#comment-8268</guid>
		<description>[...] that you can start spinning (faster and slower) and even scratching is enabled. View the Demo &#8594;Floated lists with CSS3 and jQueryIn this quick tutorial, the developer is going to explain how you can have a nicely floated list of [...]</description>
		<content:encoded><![CDATA[<p>[...] that you can start spinning (faster and slower) and even scratching is enabled. View the Demo &rarr;Floated lists with CSS3 and jQueryIn this quick tutorial, the developer is going to explain how you can have a nicely floated list of [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CSS3 and jQuery Examples</title>
		<link>http://webdesignernotebook.com/css/floated-lists-with-css3-and-jquery/#comment-6971</link>
		<dc:creator>CSS3 and jQuery Examples</dc:creator>
		<pubDate>Fri, 09 Apr 2010 09:37:32 +0000</pubDate>
		<guid isPermaLink="false">http://webdesignernotebook.com/?p=938#comment-6971</guid>
		<description>[...] Floated lists with CSS3 and jQuery &#124; demo  We should all be using advanced CSS selectors by now—they make our lifes so much easier! In this quick tutorial, I’m going to explain how you can have a nicely floated list of items. We will use jQuery to make sure IE understands it too. [...]</description>
		<content:encoded><![CDATA[<p>[...] Floated lists with CSS3 and jQuery | demo  We should all be using advanced CSS selectors by now—they make our lifes so much easier! In this quick tutorial, I’m going to explain how you can have a nicely floated list of items. We will use jQuery to make sure IE understands it too. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Java developer</title>
		<link>http://webdesignernotebook.com/css/floated-lists-with-css3-and-jquery/#comment-5864</link>
		<dc:creator>Java developer</dc:creator>
		<pubDate>Sun, 21 Feb 2010 10:53:41 +0000</pubDate>
		<guid isPermaLink="false">http://webdesignernotebook.com/?p=938#comment-5864</guid>
		<description>very nice article. Big thanks</description>
		<content:encoded><![CDATA[<p>very nice article. Big thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>
