<?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"
	>
<channel>
	<title>Comments on: Two Columns of Variable But Equal Height Using Simple CSS and a Couple of DIVs</title>
	<atom:link href="http://www.drunkenfist.com/304/2008/02/08/two-columns-of-variable-but-equal-height-using-simple-css-and-a-couple-of-divs/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.drunkenfist.com/304/2008/02/08/two-columns-of-variable-but-equal-height-using-simple-css-and-a-couple-of-divs/</link>
	<description>Rob Larsen writes on web design and development, entertainment, sports and culture.</description>
	<pubDate>Wed, 20 Aug 2008 10:22:35 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: rob</title>
		<link>http://www.drunkenfist.com/304/2008/02/08/two-columns-of-variable-but-equal-height-using-simple-css-and-a-couple-of-divs/#comment-15948</link>
		<dc:creator>rob</dc:creator>
		<pubDate>Fri, 21 Mar 2008 19:58:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.drunkenfist.com/304/2008/02/08/two-columns-of-variable-but-equal-height-using-simple-css-and-a-couple-of-divs/#comment-15948</guid>
		<description>is there a demo somewhere?</description>
		<content:encoded><![CDATA[<p>is there a demo somewhere?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://www.drunkenfist.com/304/2008/02/08/two-columns-of-variable-but-equal-height-using-simple-css-and-a-couple-of-divs/#comment-15947</link>
		<dc:creator>James</dc:creator>
		<pubDate>Fri, 21 Mar 2008 19:50:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.drunkenfist.com/304/2008/02/08/two-columns-of-variable-but-equal-height-using-simple-css-and-a-couple-of-divs/#comment-15947</guid>
		<description>I have found a good tutorial to set equal height without using an image. Here is the link: &lt;a href="http://www.girendra.com/?p=17" rel="nofollow"&gt;Create equal height columns using CSS&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>I have found a good tutorial to set equal height without using an image. Here is the link: <a href="http://www.girendra.com/?p=17" rel="nofollow">Create equal height columns using CSS</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rob</title>
		<link>http://www.drunkenfist.com/304/2008/02/08/two-columns-of-variable-but-equal-height-using-simple-css-and-a-couple-of-divs/#comment-15721</link>
		<dc:creator>rob</dc:creator>
		<pubDate>Wed, 13 Feb 2008 16:08:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.drunkenfist.com/304/2008/02/08/two-columns-of-variable-but-equal-height-using-simple-css-and-a-couple-of-divs/#comment-15721</guid>
		<description>Yeah, you need to escape markup. I should put some helper text in near the comment field. 

I'll keep my eyes peeled for the email.

I always knew (at some level) that there was a cleaner technique to clear floats. Thing is, as much as I hate adding arbitrary markup, clearing them with a div like that is just so easy I never sought out the cleaner version. 

Thanks!</description>
		<content:encoded><![CDATA[<p>Yeah, you need to escape markup. I should put some helper text in near the comment field. </p>
<p>I&#8217;ll keep my eyes peeled for the email.</p>
<p>I always knew (at some level) that there was a cleaner technique to clear floats. Thing is, as much as I hate adding arbitrary markup, clearing them with a div like that is just so easy I never sought out the cleaner version. </p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ArkRep</title>
		<link>http://www.drunkenfist.com/304/2008/02/08/two-columns-of-variable-but-equal-height-using-simple-css-and-a-couple-of-divs/#comment-15720</link>
		<dc:creator>ArkRep</dc:creator>
		<pubDate>Wed, 13 Feb 2008 16:01:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.drunkenfist.com/304/2008/02/08/two-columns-of-variable-but-equal-height-using-simple-css-and-a-couple-of-divs/#comment-15720</guid>
		<description>Bah ... the your comment system is removing my tags... I'll ping you an email ..

Ark</description>
		<content:encoded><![CDATA[<p>Bah &#8230; the your comment system is removing my tags&#8230; I&#8217;ll ping you an email ..</p>
<p>Ark</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ArkRep</title>
		<link>http://www.drunkenfist.com/304/2008/02/08/two-columns-of-variable-but-equal-height-using-simple-css-and-a-couple-of-divs/#comment-15719</link>
		<dc:creator>ArkRep</dc:creator>
		<pubDate>Wed, 13 Feb 2008 16:00:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.drunkenfist.com/304/2008/02/08/two-columns-of-variable-but-equal-height-using-simple-css-and-a-couple-of-divs/#comment-15719</guid>
		<description>Hi Rob, It's arkrep here ...

I've moddded you code to include the new clearfix which you add in the the container  of the floated content.. That way you don't need to add in extra markup ... 
ie.  

CSS

/*the two-column container*/
#container #two-columns {
	/*set that background image*/
	/*repeat it and center it*/
	background: url(images/bg.jpg) repeat-y center;
	height: auto;
	width: 500px;
	margin:auto auto 20px auto;
}
#container #two-columns #column-2 {
	/*float it*/
	float:right;
	height: auto;
	width: 215px;
	padding:5px;
}
#container #two-columns #column-1 {
	height: auto;
	width: 215px;
	padding:5px;
}

.clr {
	clear:both;
}

.clr:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

.clr {display: inline-block;}

/* Hides from IE-mac \*/
* html .clr {height: 1%;}
.clr {display: block;}
/* End hide from IE-mac */

HTML

   A column in structural engineering is a vertical structural element that transmits, through compression, the weight of the structure above to other structural elements below.  
 A column in structural engineering is a vertical structural element that transmits, through compression, the weight of the structure above to other structural elements below.  
</description>
		<content:encoded><![CDATA[<p>Hi Rob, It&#8217;s arkrep here &#8230;</p>
<p>I&#8217;ve moddded you code to include the new clearfix which you add in the the container  of the floated content.. That way you don&#8217;t need to add in extra markup &#8230;<br />
ie.  </p>
<p>CSS</p>
<p>/*the two-column container*/<br />
#container #two-columns {<br />
	/*set that background image*/<br />
	/*repeat it and center it*/<br />
	background: url(images/bg.jpg) repeat-y center;<br />
	height: auto;<br />
	width: 500px;<br />
	margin:auto auto 20px auto;<br />
}<br />
#container #two-columns #column-2 {<br />
	/*float it*/<br />
	float:right;<br />
	height: auto;<br />
	width: 215px;<br />
	padding:5px;<br />
}<br />
#container #two-columns #column-1 {<br />
	height: auto;<br />
	width: 215px;<br />
	padding:5px;<br />
}</p>
<p>.clr {<br />
	clear:both;<br />
}</p>
<p>.clr:after {<br />
    content: &#8220;.&#8221;;<br />
    display: block;<br />
    height: 0;<br />
    clear: both;<br />
    visibility: hidden;<br />
}</p>
<p>.clr {display: inline-block;}</p>
<p>/* Hides from IE-mac \*/<br />
* html .clr {height: 1%;}<br />
.clr {display: block;}<br />
/* End hide from IE-mac */</p>
<p>HTML</p>
<p>   A column in structural engineering is a vertical structural element that transmits, through compression, the weight of the structure above to other structural elements below.<br />
 A column in structural engineering is a vertical structural element that transmits, through compression, the weight of the structure above to other structural elements below.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
