<?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: Accordion using only CSS</title>
	<atom:link href="http://www.paulrhayes.com/2009-06/accordion-using-only-css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.paulrhayes.com/2009-06/accordion-using-only-css/</link>
	<description>The web musings and experiments of.</description>
	<lastBuildDate>Sat, 04 Feb 2012 10:09:27 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: WesTurner</title>
		<link>http://www.paulrhayes.com/2009-06/accordion-using-only-css/comment-page-2/#comment-1459</link>
		<dc:creator>WesTurner</dc:creator>
		<pubDate>Wed, 28 Dec 2011 18:36:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.fofronline.com/?p=89#comment-1459</guid>
		<description>@Al:

It does work in IE9+ and FF8+ but this demo is missing the -moz, -o, and -ms flavors for the transition css3 attribute. 

It would be nice if Paul updated his CSS across the site to include the browser-specific implementations of these CSS3 attributes. Better yet, the browser makers should stop using these extensions and just use the actual attribute, TRANSITION.</description>
		<content:encoded><![CDATA[<p>@Al:</p>
<p>It does work in IE9+ and FF8+ but this demo is missing the –moz, –o, and –ms flavors for the transition css3 attribute. </p>
<p>It would be nice if Paul updated his CSS across the site to include the browser-specific implementations of these CSS3 attributes. Better yet, the browser makers should stop using these extensions and just use the actual attribute, TRANSITION.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mouthwatering Collection Of jQuery Plugins And CSS3 Tricks &#124; Free Web Design Tucson</title>
		<link>http://www.paulrhayes.com/2009-06/accordion-using-only-css/comment-page-1/#comment-1436</link>
		<dc:creator>Mouthwatering Collection Of jQuery Plugins And CSS3 Tricks &#124; Free Web Design Tucson</dc:creator>
		<pubDate>Thu, 01 Dec 2011 18:20:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.fofronline.com/?p=89#comment-1436</guid>
		<description>[...] 2. Pure CSS Accordion [...]</description>
		<content:encoded><![CDATA[<p>[…] 2. Pure CSS Accordion […]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mouthwatering Collection Of jQuery Plugins And CSS3 Tricks &#124; Free WordPress Installs</title>
		<link>http://www.paulrhayes.com/2009-06/accordion-using-only-css/comment-page-1/#comment-1433</link>
		<dc:creator>Mouthwatering Collection Of jQuery Plugins And CSS3 Tricks &#124; Free WordPress Installs</dc:creator>
		<pubDate>Thu, 01 Dec 2011 09:16:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.fofronline.com/?p=89#comment-1433</guid>
		<description>[...] 2. Pure CSS Accordion [...]</description>
		<content:encoded><![CDATA[<p>[…] 2. Pure CSS Accordion […]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mouthwatering Collection Of jQuery Plugins And CSS3 Tricks &#124; Graphic Design</title>
		<link>http://www.paulrhayes.com/2009-06/accordion-using-only-css/comment-page-1/#comment-1432</link>
		<dc:creator>Mouthwatering Collection Of jQuery Plugins And CSS3 Tricks &#124; Graphic Design</dc:creator>
		<pubDate>Thu, 01 Dec 2011 08:11:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.fofronline.com/?p=89#comment-1432</guid>
		<description>[...] 2. Pure CSS Accordion [...]</description>
		<content:encoded><![CDATA[<p>[…] 2. Pure CSS Accordion […]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mouthwatering Collection Of jQuery Plugins And CSS3 Tricks</title>
		<link>http://www.paulrhayes.com/2009-06/accordion-using-only-css/comment-page-1/#comment-1431</link>
		<dc:creator>Mouthwatering Collection Of jQuery Plugins And CSS3 Tricks</dc:creator>
		<pubDate>Wed, 30 Nov 2011 21:02:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.fofronline.com/?p=89#comment-1431</guid>
		<description>[...] 2. Pure CSS Accordion [...]</description>
		<content:encoded><![CDATA[<p>[…] 2. Pure CSS Accordion […]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kunha</title>
		<link>http://www.paulrhayes.com/2009-06/accordion-using-only-css/comment-page-1/#comment-1425</link>
		<dc:creator>Kunha</dc:creator>
		<pubDate>Thu, 24 Nov 2011 23:57:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.fofronline.com/?p=89#comment-1425</guid>
		<description>Great css script :)

i did a change to avoid scroll bars 

.accordion h3 + div {
        height: 0;
        overflow: hidden;
        -webkit-transition: height 0.3s ease-in;
}

.accordion .section:target div {
	height: 100%;
	position: relative;
	float: left;
	width: 100%;
	padding-bottom: 10px;
}</description>
		<content:encoded><![CDATA[<p>Great css script <img src='http://www.paulrhayes.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>i did a change to avoid scroll bars </p>
<p>.accordion h3 + div {<br />
        height: 0;<br />
        overflow: hidden;<br />
        –webkit-transition: height 0.3s ease-in;<br />
}</p>
<p>.accordion .section:target div {<br />
	height: 100%;<br />
	position: relative;<br />
	float: left;<br />
	width: 100%;<br />
	padding-bottom: 10px;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nicholas Credli</title>
		<link>http://www.paulrhayes.com/2009-06/accordion-using-only-css/comment-page-1/#comment-1410</link>
		<dc:creator>Nicholas Credli</dc:creator>
		<pubDate>Mon, 07 Nov 2011 11:13:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.fofronline.com/?p=89#comment-1410</guid>
		<description>Cool!

Animation would work on IE, Firefox, and Opera if you add the following lines under -webkit-transition attrib.:

-o-transition: height 0.3s ease-in;
-moz-transition: height 0.3s ease-in;
-ms-transition: height 0.3s ease-in;

Nick</description>
		<content:encoded><![CDATA[<p>Cool!</p>
<p>Animation would work on IE, Firefox, and Opera if you add the following lines under –webkit-transition attrib.:</p>
<p>–o-transition: height 0.3s ease-in;<br />
–moz-transition: height 0.3s ease-in;<br />
–ms-transition: height 0.3s ease-in;</p>
<p>Nick</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TheBoy</title>
		<link>http://www.paulrhayes.com/2009-06/accordion-using-only-css/comment-page-1/#comment-1409</link>
		<dc:creator>TheBoy</dc:creator>
		<pubDate>Tue, 01 Nov 2011 17:36:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.fofronline.com/?p=89#comment-1409</guid>
		<description>Está genial, me encanta!
It&#039;s great, I love it!</description>
		<content:encoded><![CDATA[<p>Está genial, me encanta!<br />
It’s great, I love it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jean</title>
		<link>http://www.paulrhayes.com/2009-06/accordion-using-only-css/comment-page-1/#comment-1398</link>
		<dc:creator>jean</dc:creator>
		<pubDate>Sat, 15 Oct 2011 00:18:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.fofronline.com/?p=89#comment-1398</guid>
		<description>In my opinion the biggest downside is the fact that the navigation is made through links and this makes the page to scroll in order to put the referred link on top of the page. I dont think there is an easy way to solve this problem unfortunately.</description>
		<content:encoded><![CDATA[<p>In my opinion the biggest downside is the fact that the navigation is made through links and this makes the page to scroll in order to put the referred link on top of the page. I dont think there is an easy way to solve this problem unfortunately.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Noah</title>
		<link>http://www.paulrhayes.com/2009-06/accordion-using-only-css/comment-page-1/#comment-1384</link>
		<dc:creator>Noah</dc:creator>
		<pubDate>Fri, 09 Sep 2011 05:48:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.fofronline.com/?p=89#comment-1384</guid>
		<description>Maybe I&#039;m a goof but when I try to have the height of each &quot;fold&quot; just be determined by the interior content by using auto or removing height the animation doesn&#039;t work anymore. I&#039;m sorry if this is a strange question, I&#039;m so used to using js for some of these things.</description>
		<content:encoded><![CDATA[<p>Maybe I’m a goof but when I try to have the height of each “fold” just be determined by the interior content by using auto or removing height the animation doesn’t work anymore. I’m sorry if this is a strange question, I’m so used to using js for some of these things.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michaele</title>
		<link>http://www.paulrhayes.com/2009-06/accordion-using-only-css/comment-page-1/#comment-1378</link>
		<dc:creator>Michaele</dc:creator>
		<pubDate>Fri, 02 Sep 2011 15:28:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.fofronline.com/?p=89#comment-1378</guid>
		<description>Paul, Thanks for posting this - nice solution for mobile web!</description>
		<content:encoded><![CDATA[<p>Paul, Thanks for posting this — nice solution for mobile web!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brent</title>
		<link>http://www.paulrhayes.com/2009-06/accordion-using-only-css/comment-page-1/#comment-1350</link>
		<dc:creator>Brent</dc:creator>
		<pubDate>Tue, 26 Jul 2011 08:27:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.fofronline.com/?p=89#comment-1350</guid>
		<description>Excellent, I was looking for this, thank you.

IE&lt;9 needs conditional stylesheet.

Integrate also :hover and :focus? 

B
http://www.kcl.ac.uk/ip/brentcunningham</description>
		<content:encoded><![CDATA[<p>Excellent, I was looking for this, thank you.</p>
<p>IE&lt;9 needs conditional stylesheet.</p>
<p>Integrate also :hover and :focus? </p>
<p>B<br />
<a href="http://www.kcl.ac.uk/ip/brentcunningham" rel="nofollow">http://www.kcl.ac.uk/ip/brentcunningham</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Perry</title>
		<link>http://www.paulrhayes.com/2009-06/accordion-using-only-css/comment-page-1/#comment-1307</link>
		<dc:creator>Perry</dc:creator>
		<pubDate>Wed, 25 May 2011 15:39:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.fofronline.com/?p=89#comment-1307</guid>
		<description>@bastek: it works in IE9. As the author said, &quot;Works in browsers that sup­port the :target pseudo-class&quot;. IE before IE9 does not support it.</description>
		<content:encoded><![CDATA[<p>@bastek: it works in IE9. As the author said, “Works in browsers that sup­port the :target pseudo-class”. IE before IE9 does not support it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Accordion effect with CSS3 &#124; Awesome CSS3 Resources</title>
		<link>http://www.paulrhayes.com/2009-06/accordion-using-only-css/comment-page-1/#comment-1124</link>
		<dc:creator>Accordion effect with CSS3 &#124; Awesome CSS3 Resources</dc:creator>
		<pubDate>Sat, 16 Apr 2011 10:17:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.fofronline.com/?p=89#comment-1124</guid>
		<description>[...] Read the whole article with code explanation here [...]</description>
		<content:encoded><![CDATA[<p>[…] Read the whole article with code explanation here […]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bastek</title>
		<link>http://www.paulrhayes.com/2009-06/accordion-using-only-css/comment-page-1/#comment-679</link>
		<dc:creator>bastek</dc:creator>
		<pubDate>Fri, 25 Feb 2011 21:07:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.fofronline.com/?p=89#comment-679</guid>
		<description>Really cool! but sadly it doesn&#039;t work in IE 
:( 
I personally use Opera, but site must work in all browsers...</description>
		<content:encoded><![CDATA[<p>Really cool! but sadly it doesn’t work in IE<br />
 <img src='http://www.paulrhayes.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /><br />
I personally use Opera, but site must work in all browsers…</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daily Digest für February 1st, 2011 &#8212; Amys Welt</title>
		<link>http://www.paulrhayes.com/2009-06/accordion-using-only-css/comment-page-1/#comment-348</link>
		<dc:creator>Daily Digest für February 1st, 2011 &#8212; Amys Welt</dc:creator>
		<pubDate>Tue, 01 Feb 2011 00:01:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.fofronline.com/?p=89#comment-348</guid>
		<description>[...] Accordion using only CSS – Paul Hayes [...]</description>
		<content:encoded><![CDATA[<p>[…] Accordion using only CSS – Paul Hayes […]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy</title>
		<link>http://www.paulrhayes.com/2009-06/accordion-using-only-css/comment-page-1/#comment-274</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Tue, 25 Jan 2011 09:54:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.fofronline.com/?p=89#comment-274</guid>
		<description>Another pure css3 accordion here using hovers: http://www.aplweb.co.uk/blog/css/pure-css3-accordion/</description>
		<content:encoded><![CDATA[<p>Another pure css3 accordion here using hovers: <a href="http://www.aplweb.co.uk/blog/css/pure-css3-accordion/" rel="nofollow">http://www.aplweb.co.uk/blog/css/pure-css3-accordion/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: شرح عمل 20 قائمة باستخدام Css3 &#124; نوافذ التقنية Windows Technology</title>
		<link>http://www.paulrhayes.com/2009-06/accordion-using-only-css/comment-page-1/#comment-254</link>
		<dc:creator>شرح عمل 20 قائمة باستخدام Css3 &#124; نوافذ التقنية Windows Technology</dc:creator>
		<pubDate>Mon, 20 Dec 2010 08:47:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.fofronline.com/?p=89#comment-254</guid>
		<description>[...] &#124; تحميل &#124; الشرح       مثال &#124; الشرح       مثال &#124; تحميل &#124; الشرح         مثال + الشرح     مثال &#124; الشرح    [...]</description>
		<content:encoded><![CDATA[<p>[…] | تحميل | الشرح       مثال | الشرح       مثال | تحميل | الشرح         مثال + الشرح     مثال | الشرح    […]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Best Tutorials to Learn Creating Awesome Navigation Menu Using CSS3 &#171; WebKing@Krishna</title>
		<link>http://www.paulrhayes.com/2009-06/accordion-using-only-css/comment-page-1/#comment-252</link>
		<dc:creator>Best Tutorials to Learn Creating Awesome Navigation Menu Using CSS3 &#171; WebKing@Krishna</dc:creator>
		<pubDate>Thu, 09 Dec 2010 04:39:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.fofronline.com/?p=89#comment-252</guid>
		<description>[...] Accordion using only CSS [...]</description>
		<content:encoded><![CDATA[<p>[…] Accordion using only CSS […]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: morpheus7</title>
		<link>http://www.paulrhayes.com/2009-06/accordion-using-only-css/comment-page-1/#comment-236</link>
		<dc:creator>morpheus7</dc:creator>
		<pubDate>Wed, 03 Nov 2010 21:29:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.fofronline.com/?p=89#comment-236</guid>
		<description>Hi,

I have tried using it on my site and it does work great, but I would like to switch the Heading 1 text with an image. As image is inserted into the place of text trough  tags, the area remains clickable, but doesn&#039;t expand any longer. I tried playing around with it, but I sadly can&#039;t come up with any kind of solution.

Could you please offer me your insight on the matter how to make it work.

Thank you and thanks again for posting!</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I have tried using it on my site and it does work great, but I would like to switch the Heading 1 text with an image. As image is inserted into the place of text trough  tags, the area remains clickable, but doesn’t expand any longer. I tried playing around with it, but I sadly can’t come up with any kind of solution.</p>
<p>Could you please offer me your insight on the matter how to make it work.</p>
<p>Thank you and thanks again for posting!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zack</title>
		<link>http://www.paulrhayes.com/2009-06/accordion-using-only-css/comment-page-1/#comment-235</link>
		<dc:creator>Zack</dc:creator>
		<pubDate>Wed, 03 Nov 2010 20:38:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.fofronline.com/?p=89#comment-235</guid>
		<description>I have been trying to integrate this accordian effect into a mobile website for a client without much avail. But your solution works perfectly in both iOS and android devices. Thank you!</description>
		<content:encoded><![CDATA[<p>I have been trying to integrate this accordian effect into a mobile website for a client without much avail. But your solution works perfectly in both iOS and android devices. Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Deepak Kaletha</title>
		<link>http://www.paulrhayes.com/2009-06/accordion-using-only-css/comment-page-1/#comment-166</link>
		<dc:creator>Deepak Kaletha</dc:creator>
		<pubDate>Thu, 17 Jun 2010 11:16:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.fofronline.com/?p=89#comment-166</guid>
		<description>Great Article ... thnks</description>
		<content:encoded><![CDATA[<p>Great Article … thnks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 13 Pure CSS Techniques for Creating JavaScript-like Interactions &#124; crazyegg.net</title>
		<link>http://www.paulrhayes.com/2009-06/accordion-using-only-css/comment-page-1/#comment-140</link>
		<dc:creator>13 Pure CSS Techniques for Creating JavaScript-like Interactions &#124; crazyegg.net</dc:creator>
		<pubDate>Wed, 19 May 2010 13:25:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.fofronline.com/?p=89#comment-140</guid>
		<description>[...] Accordion using only CSS [...]</description>
		<content:encoded><![CDATA[<p>[…] Accordion using only CSS […]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Welcome to HTML5 and CSS3 - Tools, Resources &#38; Frameworks &#124; Greepit</title>
		<link>http://www.paulrhayes.com/2009-06/accordion-using-only-css/comment-page-1/#comment-139</link>
		<dc:creator>Welcome to HTML5 and CSS3 - Tools, Resources &#38; Frameworks &#124; Greepit</dc:creator>
		<pubDate>Wed, 19 May 2010 08:39:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.fofronline.com/?p=89#comment-139</guid>
		<description>[...] CSS3 Accordion for modern browsers [...]</description>
		<content:encoded><![CDATA[<p>[…] CSS3 Accordion for modern browsers […]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 13 Pure CSS Techniques for Creating JavaScript-like Interactions : Web Lime &#8211; Design and IT blog</title>
		<link>http://www.paulrhayes.com/2009-06/accordion-using-only-css/comment-page-1/#comment-138</link>
		<dc:creator>13 Pure CSS Techniques for Creating JavaScript-like Interactions : Web Lime &#8211; Design and IT blog</dc:creator>
		<pubDate>Wed, 19 May 2010 07:26:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.fofronline.com/?p=89#comment-138</guid>
		<description>[...] Accordion using only CSS [...]</description>
		<content:encoded><![CDATA[<p>[…] Accordion using only CSS […]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

