<?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: CSS Click Events</title>
	<atom:link href="http://tympanus.net/codrops/2012/12/17/css-click-events/feed/" rel="self" type="application/rss+xml" />
	<link>http://tympanus.net/codrops/2012/12/17/css-click-events/</link>
	<description>Useful resources and inspiration for creative minds</description>
	<lastBuildDate>Sun, 19 May 2013 18:06:52 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Jesús</title>
		<link>http://tympanus.net/codrops/2012/12/17/css-click-events/comment-page-1/#comment-432170</link>
		<dc:creator>Jesús</dc:creator>
		<pubDate>Sun, 10 Feb 2013 17:02:38 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=12849#comment-432170</guid>
		<description><![CDATA[Wouldn&#039;t been easier if we just put the input to display none since the label attached to it would still work?.]]></description>
		<content:encoded><![CDATA[<p>Wouldn&#8217;t been easier if we just put the input to display none since the label attached to it would still work?.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Web Developer</title>
		<link>http://tympanus.net/codrops/2012/12/17/css-click-events/comment-page-1/#comment-431929</link>
		<dc:creator>Web Developer</dc:creator>
		<pubDate>Fri, 01 Feb 2013 05:47:08 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=12849#comment-431929</guid>
		<description><![CDATA[Hi..
Thank you for making the only actual tutorial that I’ve been able to find. Other ‘tutorials’ haven’a actually explained how to do things, but you did so, very clearly.
Thanks..]]></description>
		<content:encoded><![CDATA[<p>Hi..<br />
Thank you for making the only actual tutorial that I’ve been able to find. Other ‘tutorials’ haven’a actually explained how to do things, but you did so, very clearly.<br />
Thanks..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raghav</title>
		<link>http://tympanus.net/codrops/2012/12/17/css-click-events/comment-page-1/#comment-430215</link>
		<dc:creator>Raghav</dc:creator>
		<pubDate>Fri, 28 Dec 2012 05:33:04 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=12849#comment-430215</guid>
		<description><![CDATA[New stuff to learn! nice.]]></description>
		<content:encoded><![CDATA[<p>New stuff to learn! nice.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: christos constandinou</title>
		<link>http://tympanus.net/codrops/2012/12/17/css-click-events/comment-page-1/#comment-430190</link>
		<dc:creator>christos constandinou</dc:creator>
		<pubDate>Thu, 27 Dec 2012 14:37:02 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=12849#comment-430190</guid>
		<description><![CDATA[There is another reason why positioning elements outside the viewport is not a good idea:

If you view your first example in firefox, and make the browser viewport small enough so you need to scroll to he &quot;click me!&quot; text and click it, you&#039;ll notice that the browser scrolls to the top of the page.

This is because FireFox is focusing the checkbox and is trying to scroll the checkbox it into view. 

If you&#039;re going to use this method on a page —or in an element — that scrolls, then you&#039;re going to encounter this problem.]]></description>
		<content:encoded><![CDATA[<p>There is another reason why positioning elements outside the viewport is not a good idea:</p>
<p>If you view your first example in firefox, and make the browser viewport small enough so you need to scroll to he &#8220;click me!&#8221; text and click it, you&#8217;ll notice that the browser scrolls to the top of the page.</p>
<p>This is because FireFox is focusing the checkbox and is trying to scroll the checkbox it into view. </p>
<p>If you&#8217;re going to use this method on a page —or in an element — that scrolls, then you&#8217;re going to encounter this problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: M?c</title>
		<link>http://tympanus.net/codrops/2012/12/17/css-click-events/comment-page-1/#comment-430115</link>
		<dc:creator>M?c</dc:creator>
		<pubDate>Tue, 25 Dec 2012 01:04:33 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=12849#comment-430115</guid>
		<description><![CDATA[What an article!
I learned something. :)]]></description>
		<content:encoded><![CDATA[<p>What an article!<br />
I learned something. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kmichel</title>
		<link>http://tympanus.net/codrops/2012/12/17/css-click-events/comment-page-1/#comment-430038</link>
		<dc:creator>kmichel</dc:creator>
		<pubDate>Fri, 21 Dec 2012 00:57:09 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=12849#comment-430038</guid>
		<description><![CDATA[You can alter more than one element using the :target hack if you put the target id on a element wrapping all the affected elements and then simply use descendant selectors such as &quot;#target:target .affected-element-1&quot;, &quot;#target:target .affected-element-2&quot;.  The most general solution would be to wrap your whole page with one nested div for each targetable id, not really pretty though but sometimes useful for mockups.]]></description>
		<content:encoded><![CDATA[<p>You can alter more than one element using the :target hack if you put the target id on a element wrapping all the affected elements and then simply use descendant selectors such as &#8220;#target:target .affected-element-1&#8243;, &#8220;#target:target .affected-element-2&#8243;.  The most general solution would be to wrap your whole page with one nested div for each targetable id, not really pretty though but sometimes useful for mockups.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bart</title>
		<link>http://tympanus.net/codrops/2012/12/17/css-click-events/comment-page-1/#comment-430035</link>
		<dc:creator>Bart</dc:creator>
		<pubDate>Thu, 20 Dec 2012 20:17:59 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=12849#comment-430035</guid>
		<description><![CDATA[Would visibility:hidden; and position:absolute work? Visibility hides the element and position absolute gets rid of the gap.]]></description>
		<content:encoded><![CDATA[<p>Would visibility:hidden; and position:absolute work? Visibility hides the element and position absolute gets rid of the gap.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Claus</title>
		<link>http://tympanus.net/codrops/2012/12/17/css-click-events/comment-page-1/#comment-430014</link>
		<dc:creator>Claus</dc:creator>
		<pubDate>Wed, 19 Dec 2012 17:04:51 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=12849#comment-430014</guid>
		<description><![CDATA[Excellent post!! Never thought of using checkbox like that hehe :D]]></description>
		<content:encoded><![CDATA[<p>Excellent post!! Never thought of using checkbox like that hehe :D</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stacey</title>
		<link>http://tympanus.net/codrops/2012/12/17/css-click-events/comment-page-1/#comment-430012</link>
		<dc:creator>Stacey</dc:creator>
		<pubDate>Wed, 19 Dec 2012 16:20:53 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=12849#comment-430012</guid>
		<description><![CDATA[Thanks you for the great post!]]></description>
		<content:encoded><![CDATA[<p>Thanks you for the great post!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Suzanna</title>
		<link>http://tympanus.net/codrops/2012/12/17/css-click-events/comment-page-1/#comment-429961</link>
		<dc:creator>Suzanna</dc:creator>
		<pubDate>Tue, 18 Dec 2012 20:22:40 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=12849#comment-429961</guid>
		<description><![CDATA[Great post. Thanks you Hugo.]]></description>
		<content:encoded><![CDATA[<p>Great post. Thanks you Hugo.</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/24 queries in 0.013 seconds using disk: basic
Content Delivery Network via codropspz.tympanus.netdna-cdn.com

 Served from: tympanus.net @ 2013-05-20 03:35:33 by W3 Total Cache -->