<?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: Equal Height Blocks in Rows</title>
	<atom:link href="http://css-tricks.com/equal-height-blocks-in-rows/feed/" rel="self" type="application/rss+xml" />
	<link>http://css-tricks.com/equal-height-blocks-in-rows/</link>
	<description>Tips, Tricks, and Techniques on using Cascading Style Sheets.</description>
	<lastBuildDate>Thu, 23 May 2013 23:35:29 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Hussain</title>
		<link>http://css-tricks.com/equal-height-blocks-in-rows/#comment-90160</link>
		<dc:creator>Hussain</dc:creator>
		<pubDate>Sun, 13 Mar 2011 03:52:52 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=8401#comment-90160</guid>
		<description><![CDATA[I tested so many jquery equal height codes and plugins, this one is absolutely the best one... I wonder if it is possible to make a plugin of it?]]></description>
		<content:encoded><![CDATA[<p>I tested so many jquery equal height codes and plugins, this one is absolutely the best one&#8230; I wonder if it is possible to make a plugin of it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Resimleri</title>
		<link>http://css-tricks.com/equal-height-blocks-in-rows/#comment-88963</link>
		<dc:creator>Resimleri</dc:creator>
		<pubDate>Fri, 18 Feb 2011 23:41:57 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=8401#comment-88963</guid>
		<description><![CDATA[I was looking for it. Thank you very much.]]></description>
		<content:encoded><![CDATA[<p>I was looking for it. Thank you very much.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://css-tricks.com/equal-height-blocks-in-rows/#comment-88916</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Thu, 17 Feb 2011 12:24:30 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=8401#comment-88916</guid>
		<description><![CDATA[Use &quot;outerHeight&quot; instead to get the correct dimensions for elements with padding/margin.

http://api.jquery.com/outerHeight/]]></description>
		<content:encoded><![CDATA[<p>Use &#8220;outerHeight&#8221; instead to get the correct dimensions for elements with padding/margin.</p>
<p><a href="http://api.jquery.com/outerHeight/" rel="nofollow">http://api.jquery.com/outerHeight/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave McFarland</title>
		<link>http://css-tricks.com/equal-height-blocks-in-rows/#comment-88586</link>
		<dc:creator>Dave McFarland</dc:creator>
		<pubDate>Fri, 11 Feb 2011 22:21:10 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=8401#comment-88586</guid>
		<description><![CDATA[Yeah, I was looking at that too. First, that code is in their twice. The  first instance, after the if (currentRowStart != topPostion) isn&#039;t neccessary. The second instance (toward the bottom after the // do the last row) runs once for each item in the jQuery collection and will take care of . This is inefficient because you end up setting the heights on a row once for each column in that row. 

Ideally, you would set the heights just once the each row after the each(). I&#039;m sure the performance hit is pretty small for a just a handful of rows and columns.

Another problem, is that if you have top or bottom padding in just one of the items, then the heights are measured accurately. Just something to keep aware of. Tom Deater&#039;s equalize columns plugin solves the padding problem: http://tomdeater.com/jquery/equalize_columns/
However, that plugin doesn&#039;t provide a way to equalize columns by row--which this code does.]]></description>
		<content:encoded><![CDATA[<p>Yeah, I was looking at that too. First, that code is in their twice. The  first instance, after the if (currentRowStart != topPostion) isn&#8217;t neccessary. The second instance (toward the bottom after the // do the last row) runs once for each item in the jQuery collection and will take care of . This is inefficient because you end up setting the heights on a row once for each column in that row. </p>
<p>Ideally, you would set the heights just once the each row after the each(). I&#8217;m sure the performance hit is pretty small for a just a handful of rows and columns.</p>
<p>Another problem, is that if you have top or bottom padding in just one of the items, then the heights are measured accurately. Just something to keep aware of. Tom Deater&#8217;s equalize columns plugin solves the padding problem: <a href="http://tomdeater.com/jquery/equalize_columns/" rel="nofollow">http://tomdeater.com/jquery/equalize_columns/</a><br />
However, that plugin doesn&#8217;t provide a way to equalize columns by row&#8211;which this code does.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave McFarland</title>
		<link>http://css-tricks.com/equal-height-blocks-in-rows/#comment-88582</link>
		<dc:creator>Dave McFarland</dc:creator>
		<pubDate>Fri, 11 Feb 2011 20:34:13 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=8401#comment-88582</guid>
		<description><![CDATA[You plugin doesn&#039;t actually maintain the chain. You need to return the objects : http://docs.jquery.com/Plugins/Authoring#Maintaining_Chainability]]></description>
		<content:encoded><![CDATA[<p>You plugin doesn&#8217;t actually maintain the chain. You need to return the objects : <a href="http://docs.jquery.com/Plugins/Authoring#Maintaining_Chainability" rel="nofollow">http://docs.jquery.com/Plugins/Authoring#Maintaining_Chainability</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dubweiser</title>
		<link>http://css-tricks.com/equal-height-blocks-in-rows/#comment-88431</link>
		<dc:creator>Dubweiser</dc:creator>
		<pubDate>Tue, 08 Feb 2011 22:17:32 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=8401#comment-88431</guid>
		<description><![CDATA[Maan! Where was this a month ago. Tried fixing these damn columns for hours. &lt;a href=&quot;http:// www.dubweiser.net&quot; rel=&quot;nofollow&quot;&gt;Dubweiser.net&lt;/a&gt;]]></description>
		<content:encoded><![CDATA[<p>Maan! Where was this a month ago. Tried fixing these damn columns for hours. <a href="http:// www.dubweiser.net" rel="nofollow">Dubweiser.net</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zj</title>
		<link>http://css-tricks.com/equal-height-blocks-in-rows/#comment-88382</link>
		<dc:creator>zj</dc:creator>
		<pubDate>Mon, 07 Feb 2011 12:54:40 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=8401#comment-88382</guid>
		<description><![CDATA[Should the following code be put outside of the &quot;each&quot; loop?

&lt;code&gt;
// do the last row
for (currentDiv = 0 ; currentDiv &lt; rowDivs.length ; currentDiv++) {
    rowDivs[currentDiv].height(currentTallest);
}
&lt;/code&gt;

That way you can save lots of unnecessary height setting...]]></description>
		<content:encoded><![CDATA[<p>Should the following code be put outside of the &#8220;each&#8221; loop?</p>
<p><code><br />
// do the last row<br />
for (currentDiv = 0 ; currentDiv &lt; rowDivs.length ; currentDiv++) {<br />
    rowDivs[currentDiv].height(currentTallest);<br />
}<br />
</code></p>
<p>That way you can save lots of unnecessary height setting&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kris Handley</title>
		<link>http://css-tricks.com/equal-height-blocks-in-rows/#comment-88353</link>
		<dc:creator>Kris Handley</dc:creator>
		<pubDate>Sat, 05 Feb 2011 13:45:34 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=8401#comment-88353</guid>
		<description><![CDATA[Just because you can, doesn&#039;t mean you should.]]></description>
		<content:encoded><![CDATA[<p>Just because you can, doesn&#8217;t mean you should.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kris Handley</title>
		<link>http://css-tricks.com/equal-height-blocks-in-rows/#comment-88352</link>
		<dc:creator>Kris Handley</dc:creator>
		<pubDate>Sat, 05 Feb 2011 13:43:55 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=8401#comment-88352</guid>
		<description><![CDATA[I had a version of this where i had to set the number of columns as an argument, but this is much nicer :)

I made a jQuery plugin out of this to maintain chaining. And also minified it.

Hope you don&#039;t mind :) Feel free to fork it or whatever.

https://github.com/krishandley/jQuery-Equal-Height-Blocks]]></description>
		<content:encoded><![CDATA[<p>I had a version of this where i had to set the number of columns as an argument, but this is much nicer :)</p>
<p>I made a jQuery plugin out of this to maintain chaining. And also minified it.</p>
<p>Hope you don&#8217;t mind :) Feel free to fork it or whatever.</p>
<p><a href="https://github.com/krishandley/jQuery-Equal-Height-Blocks" rel="nofollow">https://github.com/krishandley/jQuery-Equal-Height-Blocks</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ignacio Segura</title>
		<link>http://css-tricks.com/equal-height-blocks-in-rows/#comment-88351</link>
		<dc:creator>Ignacio Segura</dc:creator>
		<pubDate>Sat, 05 Feb 2011 13:43:29 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=8401#comment-88351</guid>
		<description><![CDATA[I actually found a method to do exactly this using just CSS. Yes, you can.

http://www.isegura.es/blog/two-columns-same-height-using-css-and-no-javascript-yes-you-can]]></description>
		<content:encoded><![CDATA[<p>I actually found a method to do exactly this using just CSS. Yes, you can.</p>
<p><a href="http://www.isegura.es/blog/two-columns-same-height-using-css-and-no-javascript-yes-you-can" rel="nofollow">http://www.isegura.es/blog/two-columns-same-height-using-css-and-no-javascript-yes-you-can</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk (User agent is rejected)
Content Delivery Network via cdn.css-tricks.com

 Served from: css-tricks.com @ 2013-05-23 17:13:19 by W3 Total Cache -->