<?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 for slash25 code</title>
	<atom:link href="http://slash25.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://slash25.com</link>
	<description>Code that works…, Beautifully.</description>
	<lastBuildDate>Sun, 22 May 2011 19:36:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>Comment on AccessU 2011 &#8211; Accessibility and WordPress by Seven Things I Learned at Access U 2011 &#124; David A. Kennedy</title>
		<link>http://slash25.com/accessu-2011-accessibility-and-wordpress/#comment-199</link>
		<dc:creator>Seven Things I Learned at Access U 2011 &#124; David A. Kennedy</dc:creator>
		<pubDate>Sun, 22 May 2011 19:36:49 +0000</pubDate>
		<guid isPermaLink="false">http://slash25.com/?p=398#comment-199</guid>
		<description>[...] Even with a few small tweaks, WordPress can be made more accessible. [...]</description>
		<content:encoded><![CDATA[<p>[...] Even with a few small tweaks, WordPress can be made more accessible. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AccessU 2011 &#8211; Accessibility and WordPress by DK WordPress Theme 3.0 &#124; David A. Kennedy</title>
		<link>http://slash25.com/accessu-2011-accessibility-and-wordpress/#comment-196</link>
		<dc:creator>DK WordPress Theme 3.0 &#124; David A. Kennedy</dc:creator>
		<pubDate>Sun, 22 May 2011 04:44:43 +0000</pubDate>
		<guid isPermaLink="false">http://slash25.com/?p=398#comment-196</guid>
		<description>[...] Egger and Patrick Ramsey for WordPress accessibility [...]</description>
		<content:encoded><![CDATA[<p>[...] Egger and Patrick Ramsey for WordPress accessibility [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using jQuery to mimic CSS3&#8242;s :nth-last-child by Patrick</title>
		<link>http://slash25.com/using-jquery-to-mimic-css3s-nth-last-child/#comment-5</link>
		<dc:creator>Patrick</dc:creator>
		<pubDate>Thu, 25 Jun 2009 17:42:41 +0000</pubDate>
		<guid isPermaLink="false">http://slash25.com/?p=216#comment-5</guid>
		<description>Steve, I need to dig some more, because I&#039;m getting two different behaviors from this code in IE7 on two sites where I use this trick. Your idea looks like it&#039;d work fine, so that might be the bulletproof trick for IE7 &amp; IE6.</description>
		<content:encoded><![CDATA[<p>Steve, I need to dig some more, because I&#8217;m getting two different behaviors from this code in IE7 on two sites where I use this trick. Your idea looks like it&#8217;d work fine, so that might be the bulletproof trick for IE7 &amp; IE6.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using jQuery to mimic CSS3&#8242;s :nth-last-child by Steve Stedman</title>
		<link>http://slash25.com/using-jquery-to-mimic-css3s-nth-last-child/#comment-4</link>
		<dc:creator>Steve Stedman</dc:creator>
		<pubDate>Thu, 25 Jun 2009 17:29:04 +0000</pubDate>
		<guid isPermaLink="false">http://slash25.com/?p=216#comment-4</guid>
		<description>Nice! Too bad that darn IE always spoils the party (FWIW, Firefox adds :nth-* in v3.5 http://hacks.mozilla.org/2009/06/css3-nth/).

Would IE play nice if you apply a &quot;lastRow&quot; class to the last li elements and then style the &quot;li.lastRow span&quot; selector?

&lt;pre lang=&quot;javascript&quot;&gt;
// goal: add classes to the last row of list items so that we can use CSS  to remove the bottom border
$(function(){
  // add the &#039;lastRow&#039; class to the last
  $(&#039;#authors li:last&#039;).addClass(&#039;lastRow&#039;)
    // then check to see if the previous  has the &#039;even&#039; class already present
    // before adding a lastRow class to it
    .prev().filter(&#039;.even&#039;).addClass(&#039;lastRow&#039;);
});
&lt;/pre&gt;

And then the CSS looks like:

&lt;pre lang=&quot;css&quot;&gt;
#authors li.lastRow span {
    border-bottom: none;
}
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Nice! Too bad that darn IE always spoils the party (FWIW, Firefox adds :nth-* in v3.5 <a href="http://hacks.mozilla.org/2009/06/css3-nth/" rel="nofollow">http://hacks.mozilla.org/2009/06/css3-nth/</a>).</p>
<p>Would IE play nice if you apply a &#8220;lastRow&#8221; class to the last li elements and then style the &#8220;li.lastRow span&#8221; selector?</p>
<pre lang="javascript">
// goal: add classes to the last row of list items so that we can use CSS  to remove the bottom border
$(function(){
  // add the 'lastRow' class to the last
  $('#authors li:last').addClass('lastRow')
    // then check to see if the previous  has the 'even' class already present
    // before adding a lastRow class to it
    .prev().filter('.even').addClass('lastRow');
});
</pre>
<p>And then the CSS looks like:</p>
<pre lang="css">
#authors li.lastRow span {
    border-bottom: none;
}
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Contact by CSS Specificity - the basics &#124; slash25 code</title>
		<link>http://slash25.com/contact/#comment-3</link>
		<dc:creator>CSS Specificity - the basics &#124; slash25 code</dc:creator>
		<pubDate>Thu, 30 Apr 2009 06:01:30 +0000</pubDate>
		<guid isPermaLink="false">http://slash25.com/?page_id=31#comment-3</guid>
		<description>[...] they go into great depth. I would recommend if you&#8217;re stuck and everything seems to not work, drop us a comment or visit that article and see if you can&#8217;t figure it [...]</description>
		<content:encoded><![CDATA[<p>[...] they go into great depth. I would recommend if you&#8217;re stuck and everything seems to not work, drop us a comment or visit that article and see if you can&#8217;t figure it [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

