<?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: Nested Grids in YUI Grids CSS</title>
	<atom:link href="http://agilewebmasters.com/nick/nested-grids-in-yui-grids-css/feed/" rel="self" type="application/rss+xml" />
	<link>http://agilewebmasters.com/nick/nested-grids-in-yui-grids-css/</link>
	<description>Take the lead out...</description>
	<lastBuildDate>Fri, 25 Nov 2011 17:58:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Twitter Trackbacks for Nested Grids in YUI Grids CSS &#124; Agile Webmasters [agilewebmasters.com] on Topsy.com</title>
		<link>http://agilewebmasters.com/nick/nested-grids-in-yui-grids-css/#comment-68825</link>
		<dc:creator>Twitter Trackbacks for Nested Grids in YUI Grids CSS &#124; Agile Webmasters [agilewebmasters.com] on Topsy.com</dc:creator>
		<pubDate>Thu, 24 Feb 2011 10:46:25 +0000</pubDate>
		<guid isPermaLink="false">http://agilewebmasters.com/?p=238#comment-68825</guid>
		<description>[...] Nested Grids in YUI Grids CSS &#124; Agile Webmasters  agilewebmasters.com/nick/nested-grids-in-yui-grids-css/ &#8211; view page &#8211; cached  Today I was trying to achieve a 25%&#124;50%&#124;25% layout within the main block of my YUI Grid CSS layout. Everything I read in documentation seemed to indicate you [...]</description>
		<content:encoded><![CDATA[<p>[...] Nested Grids in YUI Grids CSS | Agile Webmasters  agilewebmasters.com/nick/nested-grids-in-yui-grids-css/ &ndash; view page &ndash; cached  Today I was trying to achieve a 25%|50%|25% layout within the main block of my YUI Grid CSS layout. Everything I read in documentation seemed to indicate you [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stuart</title>
		<link>http://agilewebmasters.com/nick/nested-grids-in-yui-grids-css/#comment-21606</link>
		<dc:creator>Stuart</dc:creator>
		<pubDate>Thu, 06 Aug 2009 12:11:48 +0000</pubDate>
		<guid isPermaLink="false">http://agilewebmasters.com/?p=238#comment-21606</guid>
		<description>Nice to see someone else getting to grips with the YUI grids nesting &#039;issues&#039;. It&#039;s a great system and hat-tip to Nate for coming up with it, but it does have a couple of holes. If you nest a yui-gc within a yui-ge using the above information it will take the yui-ge distribution and apply it to the yui-gc children yui-u. Thus you get 74% / 25% children rather than the 66% / 33% you were after.
Looking at the un-minified css you can see Nate added a fix for this situation but with yui-gd within yui-ge, so if you addapt that to give:

/* Patch for GC within GE */
.yui-ge div.first .yui-gc .yui-u {
	width: 32%;
}
.yui-ge div.first .yui-gc div.first {
	width: 65%;
}

then your nested children retain the correct dimensions. Hooray!

Have to say I love YUI grids, it just gives such a reliable even playing field to work with.</description>
		<content:encoded><![CDATA[<p>Nice to see someone else getting to grips with the YUI grids nesting &#8216;issues&#8217;. It&#8217;s a great system and hat-tip to Nate for coming up with it, but it does have a couple of holes. If you nest a yui-gc within a yui-ge using the above information it will take the yui-ge distribution and apply it to the yui-gc children yui-u. Thus you get 74% / 25% children rather than the 66% / 33% you were after.<br />
Looking at the un-minified css you can see Nate added a fix for this situation but with yui-gd within yui-ge, so if you addapt that to give:</p>
<p>/* Patch for GC within GE */<br />
.yui-ge div.first .yui-gc .yui-u {<br />
	width: 32%;<br />
}<br />
.yui-ge div.first .yui-gc div.first {<br />
	width: 65%;<br />
}</p>
<p>then your nested children retain the correct dimensions. Hooray!</p>
<p>Have to say I love YUI grids, it just gives such a reliable even playing field to work with.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rui Zhang</title>
		<link>http://agilewebmasters.com/nick/nested-grids-in-yui-grids-css/#comment-15194</link>
		<dc:creator>Rui Zhang</dc:creator>
		<pubDate>Thu, 21 May 2009 18:36:16 +0000</pubDate>
		<guid isPermaLink="false">http://agilewebmasters.com/?p=238#comment-15194</guid>
		<description>Thanks for the solutions. I was having the same issue and couldn&#039;t create the 25%, 50%, 25% layout through nesting the second column(unit).</description>
		<content:encoded><![CDATA[<p>Thanks for the solutions. I was having the same issue and couldn&#8217;t create the 25%, 50%, 25% layout through nesting the second column(unit).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fernando trasviña</title>
		<link>http://agilewebmasters.com/nick/nested-grids-in-yui-grids-css/#comment-14800</link>
		<dc:creator>fernando trasviña</dc:creator>
		<pubDate>Thu, 14 May 2009 17:21:16 +0000</pubDate>
		<guid isPermaLink="false">http://agilewebmasters.com/?p=238#comment-14800</guid>
		<description>The problem of nesting is due to the sub pixel rounding technique used by yui (margins based on percentages).
.first adds margin-left:0; to the div.

This brings us that removing the margin-left:0 breaks the layout, that is why you cant nest in other yui-g#</description>
		<content:encoded><![CDATA[<p>The problem of nesting is due to the sub pixel rounding technique used by yui (margins based on percentages).<br />
.first adds margin-left:0; to the div.</p>
<p>This brings us that removing the margin-left:0 breaks the layout, that is why you cant nest in other yui-g#</p>
]]></content:encoded>
	</item>
</channel>
</rss>

