<?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: Tables: The Next Evolution in CSS Layout</title>
	<atom:link href="http://thinkvitamin.com/design/tables-the-next-evolution-in-css-layout/feed/" rel="self" type="application/rss+xml" />
	<link>http://thinkvitamin.com/design/tables-the-next-evolution-in-css-layout/</link>
	<description>The Web Practitioner&#039;s Blog</description>
	<lastBuildDate>Sat, 11 Feb 2012 16:33:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: Darrel Karisch</title>
		<link>http://thinkvitamin.com/design/tables-the-next-evolution-in-css-layout/#comment-20348</link>
		<dc:creator>Darrel Karisch</dc:creator>
		<pubDate>Mon, 03 May 2010 16:00:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.thinkvitamin.com/features/css/tables-the-next-evolution-in-css-layout#comment-20348</guid>
		<description>I have put together a proposal and sample Chrome implementation of a CSS layout extension described at http://blogs.eforceglobal.com/dkarisch/archive/2009/07/16/536.aspx.

With this generalized CSS layout solution HTML-like tables that include cell spanning can be achieved that require no special nonsemantic HTML mark-up... http://blogs.eforceglobal.com/dkarisch/archive/2010/03/15/544.aspx

you can download the proof of concept from http://downloads.eforceglobal.com/CSS/CSSScriptLayoutR21525.zip and check out the examples.  The performance is better than you would imagine, Microsoft&#039;s CSS Expressions notwithstanding.  The executable should work on any windows XP box.</description>
		<content:encoded><![CDATA[<p>I have put together a proposal and sample Chrome implementation of a CSS layout extension described at <a href="http://blogs.eforceglobal.com/dkarisch/archive/2009/07/16/536.aspx" rel="nofollow">http://blogs.eforceglobal.com/dkarisch/archive/2009/07/16/536.aspx</a>.</p>
<p>With this generalized CSS layout solution HTML-like tables that include cell spanning can be achieved that require no special nonsemantic HTML mark-up&#8230; <a href="http://blogs.eforceglobal.com/dkarisch/archive/2010/03/15/544.aspx" rel="nofollow">http://blogs.eforceglobal.com/dkarisch/archive/2010/03/15/544.aspx</a></p>
<p>you can download the proof of concept from <a href="http://downloads.eforceglobal.com/CSS/CSSScriptLayoutR21525.zip" rel="nofollow">http://downloads.eforceglobal.com/CSS/CSSScriptLayoutR21525.zip</a> and check out the examples.  The performance is better than you would imagine, Microsoft&#8217;s CSS Expressions notwithstanding.  The executable should work on any windows XP box.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Gardner</title>
		<link>http://thinkvitamin.com/design/tables-the-next-evolution-in-css-layout/#comment-18810</link>
		<dc:creator>Paul Gardner</dc:creator>
		<pubDate>Sat, 20 Feb 2010 16:11:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.thinkvitamin.com/features/css/tables-the-next-evolution-in-css-layout#comment-18810</guid>
		<description>For anyone having top-alignment issues with this you need to specify vertical-align:top; for your divs defined as display:table-cell;

Simples,

Paul.</description>
		<content:encoded><![CDATA[<p>For anyone having top-alignment issues with this you need to specify vertical-align:top; for your divs defined as display:table-cell;</p>
<p>Simples,</p>
<p>Paul.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Gardner</title>
		<link>http://thinkvitamin.com/design/tables-the-next-evolution-in-css-layout/#comment-18789</link>
		<dc:creator>Paul Gardner</dc:creator>
		<pubDate>Fri, 19 Feb 2010 16:27:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.thinkvitamin.com/features/css/tables-the-next-evolution-in-css-layout#comment-18789</guid>
		<description>It may be a good idea for you to allow code snippets on a blog about the web?

My HTML got stripped from my comments above, to see my problem on a web page visit:

http://new.localcause.org.uk/users/login

Thanks,

Paul.</description>
		<content:encoded><![CDATA[<p>It may be a good idea for you to allow code snippets on a blog about the web?</p>
<p>My HTML got stripped from my comments above, to see my problem on a web page visit:</p>
<p><a href="http://new.localcause.org.uk/users/login" rel="nofollow">http://new.localcause.org.uk/users/login</a></p>
<p>Thanks,</p>
<p>Paul.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Gardner</title>
		<link>http://thinkvitamin.com/design/tables-the-next-evolution-in-css-layout/#comment-18788</link>
		<dc:creator>Paul Gardner</dc:creator>
		<pubDate>Fri, 19 Feb 2010 16:25:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.thinkvitamin.com/features/css/tables-the-next-evolution-in-css-layout#comment-18788</guid>
		<description>This is a great solution to using CSS to define tables for layout leaving HTML tables to be for data alone, however I have a slight issue with it in FireFox.

[code]
HTML:

  
    
      
        Column 1 content
      
    
    
      
        Column 2 content
      
    
  

[/code]

CSS:
[code]
.table {display:table; width:100%;}
.table .tablerow {display:table-row; width:100%;}
.table .tablerow .tablecell {display:table-cell;}
.layout2cr .column1 .columninner {padding:20px;}
.layout2cr .column2 {width:15em; border-left:1px solid #CCD0A6; background-color:#E0EFBE; -moz-border-radius:0 6px 6px 0;}
.layout2cr .column2 .columninner {padding:10px;}
[/code]

My problem is that .column2 .columninner is taking on board the padding-top value of .column1 .columninner.  

No matter if I use margin or padding it takes the biggest value from either column and applies it to just the top of both columns.

Any ideas?

Paul.</description>
		<content:encoded><![CDATA[<p>This is a great solution to using CSS to define tables for layout leaving HTML tables to be for data alone, however I have a slight issue with it in FireFox.</p>
<p>[code]<br />
HTML:</p>
<p>        Column 1 content</p>
<p>        Column 2 content</p>
<p>[/code]</p>
<p>CSS:<br />
[code]<br />
.table {display:table; width:100%;}<br />
.table .tablerow {display:table-row; width:100%;}<br />
.table .tablerow .tablecell {display:table-cell;}<br />
.layout2cr .column1 .columninner {padding:20px;}<br />
.layout2cr .column2 {width:15em; border-left:1px solid #CCD0A6; background-color:#E0EFBE; -moz-border-radius:0 6px 6px 0;}<br />
.layout2cr .column2 .columninner {padding:10px;}<br />
[/code]</p>
<p>My problem is that .column2 .columninner is taking on board the padding-top value of .column1 .columninner.  </p>
<p>No matter if I use margin or padding it takes the biggest value from either column and applies it to just the top of both columns.</p>
<p>Any ideas?</p>
<p>Paul.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: OrvassM0r4</title>
		<link>http://thinkvitamin.com/design/tables-the-next-evolution-in-css-layout/#comment-17763</link>
		<dc:creator>OrvassM0r4</dc:creator>
		<pubDate>Thu, 14 Jan 2010 13:59:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.thinkvitamin.com/features/css/tables-the-next-evolution-in-css-layout#comment-17763</guid>
		<description>Do You like it? , ge 40 watt bulb, 2000 watt generator, 150 watt light bulbs, 4 channel 1000 watt amplifier, distressed stretch jeans,</description>
		<content:encoded><![CDATA[<p>Do You like it? , ge 40 watt bulb, 2000 watt generator, 150 watt light bulbs, 4 channel 1000 watt amplifier, distressed stretch jeans,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Edwar5J</title>
		<link>http://thinkvitamin.com/design/tables-the-next-evolution-in-css-layout/#comment-17353</link>
		<dc:creator>Edwar5J</dc:creator>
		<pubDate>Wed, 23 Dec 2009 10:48:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.thinkvitamin.com/features/css/tables-the-next-evolution-in-css-layout#comment-17353</guid>
		<description>Strong time. , latina anal movies, brazilian ass fucked, celeb free nude photos, busty asian milfs, sexy gay boys, small asian tits, sexy anime games, public fuck vids, free lesbian video download,</description>
		<content:encoded><![CDATA[<p>Strong time. , latina anal movies, brazilian ass fucked, celeb free nude photos, busty asian milfs, sexy gay boys, small asian tits, sexy anime games, public fuck vids, free lesbian video download,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cheltenham Web Design</title>
		<link>http://thinkvitamin.com/design/tables-the-next-evolution-in-css-layout/#comment-17195</link>
		<dc:creator>Cheltenham Web Design</dc:creator>
		<pubDate>Tue, 15 Dec 2009 20:01:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.thinkvitamin.com/features/css/tables-the-next-evolution-in-css-layout#comment-17195</guid>
		<description>I love looking through these older articles where we expected IE8 to give us a helping hand! 2 or 3 sets of CSS is a much easier solution in most cases.</description>
		<content:encoded><![CDATA[<p>I love looking through these older articles where we expected IE8 to give us a helping hand! 2 or 3 sets of CSS is a much easier solution in most cases.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aemerz</title>
		<link>http://thinkvitamin.com/design/tables-the-next-evolution-in-css-layout/#comment-16426</link>
		<dc:creator>aemerz</dc:creator>
		<pubDate>Wed, 11 Nov 2009 15:41:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.thinkvitamin.com/features/css/tables-the-next-evolution-in-css-layout#comment-16426</guid>
		<description>XaOFGd  &lt;a href=&quot;http://mhzzoinrkxpz.com/&quot; rel=&quot;nofollow&quot;&gt;mhzzoinrkxpz&lt;/a&gt;, [url=http://sloaeynpuztw.com/]sloaeynpuztw[/url], [link=http://dytpuxahapda.com/]dytpuxahapda[/link], http://ajjxgeooczta.com/</description>
		<content:encoded><![CDATA[<p>XaOFGd  <a href="http://mhzzoinrkxpz.com/" rel="nofollow">mhzzoinrkxpz</a>, [url=http://sloaeynpuztw.com/]sloaeynpuztw[/url], [link=http://dytpuxahapda.com/]dytpuxahapda[/link], <a href="http://ajjxgeooczta.com/" rel="nofollow">http://ajjxgeooczta.com/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan Kelly</title>
		<link>http://thinkvitamin.com/design/tables-the-next-evolution-in-css-layout/#comment-7909</link>
		<dc:creator>Ryan Kelly</dc:creator>
		<pubDate>Mon, 29 Jun 2009 17:21:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.thinkvitamin.com/features/css/tables-the-next-evolution-in-css-layout#comment-7909</guid>
		<description>Caution: DIV overload.</description>
		<content:encoded><![CDATA[<p>Caution: DIV overload.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sohbet</title>
		<link>http://thinkvitamin.com/design/tables-the-next-evolution-in-css-layout/#comment-7907</link>
		<dc:creator>sohbet</dc:creator>
		<pubDate>Wed, 10 Jun 2009 10:57:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.thinkvitamin.com/features/css/tables-the-next-evolution-in-css-layout#comment-7907</guid>
		<description>thanks admin good post</description>
		<content:encoded><![CDATA[<p>thanks admin good post</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dilanomoova</title>
		<link>http://thinkvitamin.com/design/tables-the-next-evolution-in-css-layout/#comment-7906</link>
		<dc:creator>Dilanomoova</dc:creator>
		<pubDate>Sun, 17 May 2009 13:55:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.thinkvitamin.com/features/css/tables-the-next-evolution-in-css-layout#comment-7906</guid>
		<description>У вас верстка сайта в Opera 9.64 глючит :(</description>
		<content:encoded><![CDATA[<p>У вас верстка сайта в Opera 9.64 глючит :(</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Trim Tools</title>
		<link>http://thinkvitamin.com/design/tables-the-next-evolution-in-css-layout/#comment-7896</link>
		<dc:creator>Trim Tools</dc:creator>
		<pubDate>Sat, 02 May 2009 15:11:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.thinkvitamin.com/features/css/tables-the-next-evolution-in-css-layout#comment-7896</guid>
		<description>I have been trying to get my table info into my css file and out of the html. Thanks for the help.</description>
		<content:encoded><![CDATA[<p>I have been trying to get my table info into my css file and out of the html. Thanks for the help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hiren Modi</title>
		<link>http://thinkvitamin.com/design/tables-the-next-evolution-in-css-layout/#comment-7904</link>
		<dc:creator>Hiren Modi</dc:creator>
		<pubDate>Fri, 01 May 2009 09:06:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.thinkvitamin.com/features/css/tables-the-next-evolution-in-css-layout#comment-7904</guid>
		<description>awesome tutorials, Thanks.</description>
		<content:encoded><![CDATA[<p>awesome tutorials, Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: German learning Course</title>
		<link>http://thinkvitamin.com/design/tables-the-next-evolution-in-css-layout/#comment-7903</link>
		<dc:creator>German learning Course</dc:creator>
		<pubDate>Thu, 23 Apr 2009 12:36:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.thinkvitamin.com/features/css/tables-the-next-evolution-in-css-layout#comment-7903</guid>
		<description>good stuff.</description>
		<content:encoded><![CDATA[<p>good stuff.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Free Website Design</title>
		<link>http://thinkvitamin.com/design/tables-the-next-evolution-in-css-layout/#comment-7902</link>
		<dc:creator>Free Website Design</dc:creator>
		<pubDate>Thu, 09 Apr 2009 22:00:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.thinkvitamin.com/features/css/tables-the-next-evolution-in-css-layout#comment-7902</guid>
		<description>As a web designer, this is something that irks me every time I have to do it. I have a beautiful CSS layout, then the client wants this here and that there instead. I&#039;ve learnt long ago not to try and argue with them, instead, I just sigh, and do what I need to do in an HTML layout. Never ceases to hurt me inside every time I need to do it though.&lt;br&gt;&lt;br&gt;Thank you for showing me there is an end to my pain in sight!</description>
		<content:encoded><![CDATA[<p>As a web designer, this is something that irks me every time I have to do it. I have a beautiful CSS layout, then the client wants this here and that there instead. I&#39;ve learnt long ago not to try and argue with them, instead, I just sigh, and do what I need to do in an HTML layout. Never ceases to hurt me inside every time I need to do it though.</p>
<p>Thank you for showing me there is an end to my pain in sight!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Free Website Design</title>
		<link>http://thinkvitamin.com/design/tables-the-next-evolution-in-css-layout/#comment-34534</link>
		<dc:creator>Free Website Design</dc:creator>
		<pubDate>Thu, 09 Apr 2009 22:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.thinkvitamin.com/features/css/tables-the-next-evolution-in-css-layout#comment-34534</guid>
		<description>As a web designer, this is something that irks me every time I have to do it. I have a beautiful CSS layout, then the client wants this here and that there instead. I&#039;ve learnt long ago not to try and argue with them, instead, I just sigh, and do what I need to do in an HTML layout. Never ceases to hurt me inside every time I need to do it though.Thank you for showing me there is an end to my pain in sight!</description>
		<content:encoded><![CDATA[<p>As a web designer, this is something that irks me every time I have to do it. I have a beautiful CSS layout, then the client wants this here and that there instead. I&#039;ve learnt long ago not to try and argue with them, instead, I just sigh, and do what I need to do in an HTML layout. Never ceases to hurt me inside every time I need to do it though.Thank you for showing me there is an end to my pain in sight!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jake</title>
		<link>http://thinkvitamin.com/design/tables-the-next-evolution-in-css-layout/#comment-7897</link>
		<dc:creator>Jake</dc:creator>
		<pubDate>Wed, 25 Mar 2009 23:55:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.thinkvitamin.com/features/css/tables-the-next-evolution-in-css-layout#comment-7897</guid>
		<description>It&#039;s a nice idea but look at the hack you had to put in just for IE7. I can only imagine that IE6/5 aren&#039;t too happy about it (sorry i&#039;m on a mac- no IE). &lt;br&gt;&lt;br&gt;But basically you&#039;ve had to write two sets of CSS which i know designers aren&#039;t going to be able to get their head round - i&#039;m a designer btw so i can say that ;-)</description>
		<content:encoded><![CDATA[<p>It&#39;s a nice idea but look at the hack you had to put in just for IE7. I can only imagine that IE6/5 aren&#39;t too happy about it (sorry i&#39;m on a mac- no IE). </p>
<p>But basically you&#39;ve had to write two sets of CSS which i know designers aren&#39;t going to be able to get their head round &#8211; i&#39;m a designer btw so i can say that ;-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jake</title>
		<link>http://thinkvitamin.com/design/tables-the-next-evolution-in-css-layout/#comment-34522</link>
		<dc:creator>Jake</dc:creator>
		<pubDate>Wed, 25 Mar 2009 23:55:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.thinkvitamin.com/features/css/tables-the-next-evolution-in-css-layout#comment-34522</guid>
		<description>It&#039;s a nice idea but look at the hack you had to put in just for IE7. I can only imagine that IE6/5 aren&#039;t too happy about it (sorry i&#039;m on a mac- no IE). But basically you&#039;ve had to write two sets of CSS which i know designers aren&#039;t going to be able to get their head round - i&#039;m a designer btw so i can say that ;-)</description>
		<content:encoded><![CDATA[<p>It&#039;s a nice idea but look at the hack you had to put in just for IE7. I can only imagine that IE6/5 aren&#039;t too happy about it (sorry i&#039;m on a mac- no IE). But basically you&#039;ve had to write two sets of CSS which i know designers aren&#039;t going to be able to get their head round &#8211; i&#039;m a designer btw so i can say that ;-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: psd to any design</title>
		<link>http://thinkvitamin.com/design/tables-the-next-evolution-in-css-layout/#comment-7901</link>
		<dc:creator>psd to any design</dc:creator>
		<pubDate>Wed, 18 Mar 2009 19:23:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.thinkvitamin.com/features/css/tables-the-next-evolution-in-css-layout#comment-7901</guid>
		<description>it&#039;s a pity! but It does not work in IE 6 :(&lt;br&gt;&lt;br&gt;i have IE 6, but some clients want layouts for ie 6 too</description>
		<content:encoded><![CDATA[<p>it&#39;s a pity! but It does not work in IE 6 :(</p>
<p>i have IE 6, but some clients want layouts for ie 6 too</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: psd to any design</title>
		<link>http://thinkvitamin.com/design/tables-the-next-evolution-in-css-layout/#comment-34532</link>
		<dc:creator>psd to any design</dc:creator>
		<pubDate>Wed, 18 Mar 2009 19:23:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.thinkvitamin.com/features/css/tables-the-next-evolution-in-css-layout#comment-34532</guid>
		<description>it&#039;s a pity! but It does not work in IE 6 :(i have IE 6, but some clients want layouts for ie 6 too</description>
		<content:encoded><![CDATA[<p>it&#039;s a pity! but It does not work in IE 6 :(i have IE 6, but some clients want layouts for ie 6 too</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Will</title>
		<link>http://thinkvitamin.com/design/tables-the-next-evolution-in-css-layout/#comment-7900</link>
		<dc:creator>Will</dc:creator>
		<pubDate>Sun, 01 Mar 2009 03:44:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.thinkvitamin.com/features/css/tables-the-next-evolution-in-css-layout#comment-7900</guid>
		<description>One question on the sample.  What&#039;s the purpose of the &quot;skipto&quot; container?&lt;br&gt;&lt;br&gt;I like the idea that CSS can do layout.  Although personally, I&#039;d like to separate &quot;style&quot; from &quot;structure&quot;, as if the frame is not part of the painting.</description>
		<content:encoded><![CDATA[<p>One question on the sample.  What&#39;s the purpose of the &#8220;skipto&#8221; container?</p>
<p>I like the idea that CSS can do layout.  Although personally, I&#39;d like to separate &#8220;style&#8221; from &#8220;structure&#8221;, as if the frame is not part of the painting.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Will</title>
		<link>http://thinkvitamin.com/design/tables-the-next-evolution-in-css-layout/#comment-34529</link>
		<dc:creator>Will</dc:creator>
		<pubDate>Sun, 01 Mar 2009 03:44:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.thinkvitamin.com/features/css/tables-the-next-evolution-in-css-layout#comment-34529</guid>
		<description>One question on the sample.  What&#039;s the purpose of the &quot;skipto&quot; container?I like the idea that CSS can do layout.  Although personally, I&#039;d like to separate &quot;style&quot; from &quot;structure&quot;, as if the frame is not part of the painting.</description>
		<content:encoded><![CDATA[<p>One question on the sample.  What&#039;s the purpose of the &#8220;skipto&#8221; container?I like the idea that CSS can do layout.  Although personally, I&#039;d like to separate &#8220;style&#8221; from &#8220;structure&#8221;, as if the frame is not part of the painting.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean Stewart</title>
		<link>http://thinkvitamin.com/design/tables-the-next-evolution-in-css-layout/#comment-7899</link>
		<dc:creator>Sean Stewart</dc:creator>
		<pubDate>Fri, 13 Feb 2009 19:58:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.thinkvitamin.com/features/css/tables-the-next-evolution-in-css-layout#comment-7899</guid>
		<description>Fantastic article... right after reading I ad to build a prototype of my own. One question that has always plagued me though.... why is it necessary to add the border to the header and footer in order for it to expand around it&#039;s content and not just the text itself?&lt;br&gt;&lt;br&gt;I&#039;ve ran into this before, but have never known the technical explanation. Any ideas?</description>
		<content:encoded><![CDATA[<p>Fantastic article&#8230; right after reading I ad to build a prototype of my own. One question that has always plagued me though&#8230;. why is it necessary to add the border to the header and footer in order for it to expand around it&#39;s content and not just the text itself?</p>
<p>I&#39;ve ran into this before, but have never known the technical explanation. Any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean Stewart</title>
		<link>http://thinkvitamin.com/design/tables-the-next-evolution-in-css-layout/#comment-34527</link>
		<dc:creator>Sean Stewart</dc:creator>
		<pubDate>Fri, 13 Feb 2009 19:58:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.thinkvitamin.com/features/css/tables-the-next-evolution-in-css-layout#comment-34527</guid>
		<description>Fantastic article... right after reading I ad to build a prototype of my own. One question that has always plagued me though.... why is it necessary to add the border to the header and footer in order for it to expand around it&#039;s content and not just the text itself?I&#039;ve ran into this before, but have never known the technical explanation. Any ideas?</description>
		<content:encoded><![CDATA[<p>Fantastic article&#8230; right after reading I ad to build a prototype of my own. One question that has always plagued me though&#8230;. why is it necessary to add the border to the header and footer in order for it to expand around it&#039;s content and not just the text itself?I&#039;ve ran into this before, but have never known the technical explanation. Any ideas?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic page generated in 0.326 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-11 22:44:26 -->

