<?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 &#8211; A Sticky Subject</title>
	<atom:link href="http://www.search-this.com/2009/10/09/css-a-sticky-subject/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.search-this.com/2009/10/09/css-a-sticky-subject/</link>
	<description>Internet Marketing, Website Promotion and Blogging Advice</description>
	<lastBuildDate>Fri, 05 Mar 2010 22:39:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Paul OB</title>
		<link>http://www.search-this.com/2009/10/09/css-a-sticky-subject/comment-page-1/#comment-156141</link>
		<dc:creator>Paul OB</dc:creator>
		<pubDate>Mon, 23 Nov 2009 15:13:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/?p=970#comment-156141</guid>
		<description>Thanks for the comments Ray and yes I think all areas are covered nicely now with Erik&#039;s extra fix:)</description>
		<content:encoded><![CDATA[<p>Thanks for the comments Ray and yes I think all areas are covered nicely now with Erik&#8217;s extra fix:)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ray H.</title>
		<link>http://www.search-this.com/2009/10/09/css-a-sticky-subject/comment-page-1/#comment-156054</link>
		<dc:creator>Ray H.</dc:creator>
		<pubDate>Sun, 22 Nov 2009 08:38:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/?p=970#comment-156054</guid>
		<description>&gt;&gt;(This also raises another interesting point in that adding overflow:hidden to #outer kills the sticky footer effect in Opera.)

Hi Paul,

I had also noticed that overflow:hidden; on the parent div caused problems in Opera. 

Opera&#039;s issue along with the option of allowing content to protrude outside of the parent without being cut off was the reason I had preferred the :after float clearing method.

Erik&#039;s solution of height:1% does indeed seem to be a solid fix for IE8 which eliminates the need for any Conditional Comments or IE stylesheets. :)</description>
		<content:encoded><![CDATA[<p>&gt;&gt;(This also raises another interesting point in that adding overflow:hidden to #outer kills the sticky footer effect in Opera.)</p>
<p>Hi Paul,</p>
<p>I had also noticed that overflow:hidden; on the parent div caused problems in Opera. </p>
<p>Opera&#8217;s issue along with the option of allowing content to protrude outside of the parent without being cut off was the reason I had preferred the :after float clearing method.</p>
<p>Erik&#8217;s solution of height:1% does indeed seem to be a solid fix for IE8 which eliminates the need for any Conditional Comments or IE stylesheets. <img src='http://www.search-this.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Erik J</title>
		<link>http://www.search-this.com/2009/10/09/css-a-sticky-subject/comment-page-1/#comment-153724</link>
		<dc:creator>Erik J</dc:creator>
		<pubDate>Thu, 15 Oct 2009 11:35:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/?p=970#comment-153724</guid>
		<description>Sorry for the double post. :)</description>
		<content:encoded><![CDATA[<p>Sorry for the double post. <img src='http://www.search-this.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Erik J</title>
		<link>http://www.search-this.com/2009/10/09/css-a-sticky-subject/comment-page-1/#comment-153723</link>
		<dc:creator>Erik J</dc:creator>
		<pubDate>Thu, 15 Oct 2009 11:33:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/?p=970#comment-153723</guid>
		<description>Hi Paul, You already know IE8 does recalculate the #outer min-height if a child to it base its height on percent. 
So in the case a clearer is needed, a :after clearing rule could replace the IE8 table display. 

#outer:after {
	clear:both;
	display:block;
	height:1%;
	content:&quot;&quot;;
}
As the parent height is auto, the 1% height would be none as the content is. Would such rule work reliably for IE8 min-height do you think?</description>
		<content:encoded><![CDATA[<p>Hi Paul, You already know IE8 does recalculate the #outer min-height if a child to it base its height on percent.<br />
So in the case a clearer is needed, a :after clearing rule could replace the IE8 table display. </p>
<p>#outer:after {<br />
	clear:both;<br />
	display:block;<br />
	height:1%;<br />
	content:&#8221;";<br />
}<br />
As the parent height is auto, the 1% height would be none as the content is. Would such rule work reliably for IE8 min-height do you think?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul OB</title>
		<link>http://www.search-this.com/2009/10/09/css-a-sticky-subject/comment-page-1/#comment-153549</link>
		<dc:creator>Paul OB</dc:creator>
		<pubDate>Mon, 12 Oct 2009 09:36:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/?p=970#comment-153549</guid>
		<description>Hi Erik,

Actually that works well for IE8 instead of the display:table so you could use either. 

I usually avoid using the :after clearing mechanism on sticky footers because it introduces a space at the bottom in Firefox. However using the negative top margin method as shown above the gap doesn&#039;t seem to appear. 

This also raises another interesting point in that adding overflow:hidden to #outer kills the sticky footer effect in Opera.

Therefore to clear floats in the sticky footer version I would now advocate using the :after method instead of using overflow.

So perhaps building this :after method in from the start would be more reliable and avoid using the display:table for IE8 also.</description>
		<content:encoded><![CDATA[<p>Hi Erik,</p>
<p>Actually that works well for IE8 instead of the display:table so you could use either. </p>
<p>I usually avoid using the :after clearing mechanism on sticky footers because it introduces a space at the bottom in Firefox. However using the negative top margin method as shown above the gap doesn&#8217;t seem to appear. </p>
<p>This also raises another interesting point in that adding overflow:hidden to #outer kills the sticky footer effect in Opera.</p>
<p>Therefore to clear floats in the sticky footer version I would now advocate using the :after method instead of using overflow.</p>
<p>So perhaps building this :after method in from the start would be more reliable and avoid using the display:table for IE8 also.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Erik J</title>
		<link>http://www.search-this.com/2009/10/09/css-a-sticky-subject/comment-page-1/#comment-153486</link>
		<dc:creator>Erik J</dc:creator>
		<pubDate>Sun, 11 Oct 2009 09:46:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/?p=970#comment-153486</guid>
		<description>Hi Paul, as you know alredy IE8 does also apply the #outer min-width if a child to it base its height on percent. 
In the case a clearer is needed, an :after rule could replace the IE8 table display. As the parent height is auto, the 1% height would be none. Would such rule work reliably for IE8 do you think?

#outer:after {
	clear:both;
	display:block;
	height:1%;
	content:&quot;&quot;;
}</description>
		<content:encoded><![CDATA[<p>Hi Paul, as you know alredy IE8 does also apply the #outer min-width if a child to it base its height on percent.<br />
In the case a clearer is needed, an :after rule could replace the IE8 table display. As the parent height is auto, the 1% height would be none. Would such rule work reliably for IE8 do you think?</p>
<p>#outer:after {<br />
	clear:both;<br />
	display:block;<br />
	height:1%;<br />
	content:&#8221;";<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul OB</title>
		<link>http://www.search-this.com/2009/10/09/css-a-sticky-subject/comment-page-1/#comment-153386</link>
		<dc:creator>Paul OB</dc:creator>
		<pubDate>Fri, 09 Oct 2009 18:27:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/?p=970#comment-153386</guid>
		<description>Where did the code go :)

if !IE 7</description>
		<content:encoded><![CDATA[<p>Where did the code go <img src='http://www.search-this.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>if !IE 7</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul OB</title>
		<link>http://www.search-this.com/2009/10/09/css-a-sticky-subject/comment-page-1/#comment-153385</link>
		<dc:creator>Paul OB</dc:creator>
		<pubDate>Fri, 09 Oct 2009 18:24:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/?p=970#comment-153385</guid>
		<description>Yes I could have done that (and not sure why I didn&#039;t now) :)

I could have done this instead:
&lt;!--[if !IE 7]&gt;--&gt;
etc.....

= if not IE7</description>
		<content:encoded><![CDATA[<p>Yes I could have done that (and not sure why I didn&#8217;t now) <img src='http://www.search-this.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I could have done this instead:<br />
<!--[if !IE 7]&gt;--><br />
etc&#8230;..</p>
<p>= if not IE7</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan Schulz</title>
		<link>http://www.search-this.com/2009/10/09/css-a-sticky-subject/comment-page-1/#comment-153377</link>
		<dc:creator>Dan Schulz</dc:creator>
		<pubDate>Fri, 09 Oct 2009 16:49:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/?p=970#comment-153377</guid>
		<description>Hey Paul, just curious (even though I asked you on Skype, I thought I&#039;d post it here for the record).  Why not use a conditional comment that specifically excludes IE7 instead of targeting IE6- and IE8+?</description>
		<content:encoded><![CDATA[<p>Hey Paul, just curious (even though I asked you on Skype, I thought I&#8217;d post it here for the record).  Why not use a conditional comment that specifically excludes IE7 instead of targeting IE6- and IE8+?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
