<?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: Another CSS vs. tables debate</title>
	<atom:link href="http://www.webdevout.net/tidings/2009/02/04/another-css-vs-tables-debate/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webdevout.net/tidings/2009/02/04/another-css-vs-tables-debate/</link>
	<description>Updates on the march of progress. A weblog about web design, standards, web browsers, and the overall health of the Web.</description>
	<lastBuildDate>Wed, 14 Dec 2011 14:45:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Mitch 74</title>
		<link>http://www.webdevout.net/tidings/2009/02/04/another-css-vs-tables-debate/comment-page-1/#comment-4146</link>
		<dc:creator>Mitch 74</dc:creator>
		<pubDate>Mon, 23 Feb 2009 10:11:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.webdevout.net/tidings/2009/02/04/another-css-vs-tables-debate/#comment-4146</guid>
		<description>...my bad.

I stiff feel uncomfortable not having a semantic element defining where the &#039;table&#039; (or table body) should be in the HTML markup.</description>
		<content:encoded><![CDATA[<p>&#8230;my bad.</p>
<p>I stiff feel uncomfortable not having a semantic element defining where the &#8216;table&#8217; (or table body) should be in the <abbr title="HyperText Markup Language">HTML</abbr> markup.</p>
<p class="postdetails"><em>Posted using Mozilla Firefox 3.0.5 on Linux.</em></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel</title>
		<link>http://www.webdevout.net/tidings/2009/02/04/another-css-vs-tables-debate/comment-page-1/#comment-4145</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Sat, 21 Feb 2009 10:02:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.webdevout.net/tidings/2009/02/04/another-css-vs-tables-debate/#comment-4145</guid>
		<description>@Mitch 74:

&lt;a href=&quot;http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes&quot;&gt;Take a look&lt;/a&gt;. It is defined what an engine has to do if any part of a table is missing while it&#039;s laid out.

Yeah, one can hope for many things to come in CSS 3.</description>
		<content:encoded><![CDATA[<p>@Mitch 74:</p>
<p><a href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes">Take a look</a>. It is defined what an engine has to do if any part of a table is missing while it&#8217;s laid out.</p>
<p>Yeah, one can hope for many things to come in <abbr title="Cascading Style Sheets">CSS</abbr> 3.</p>
<p class="postdetails"><em>Posted using Mozilla Firefox 3.0.6 on Windows.</em></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mitch 74</title>
		<link>http://www.webdevout.net/tidings/2009/02/04/another-css-vs-tables-debate/comment-page-1/#comment-4144</link>
		<dc:creator>Mitch 74</dc:creator>
		<pubDate>Wed, 18 Feb 2009 09:45:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.webdevout.net/tidings/2009/02/04/another-css-vs-tables-debate/#comment-4144</guid>
		<description>@Daniel: while your tip on table-cell (and table-row) actually works, I would personally not use it: it&#039;s a hack you&#039;re forced to use, like in HTML using a bunch of TDs to create inline-blocks... In practice, you would need to give all elements you would want in a table, a specific class (say, 3 paragraphs) and then declare said class to have display:table-cell. Semantically, these elements have something that takes them apart from the page&#039;s body, so they should be marked as such - with a DIV. That, or use a restyled UL/LI combo instead (it may be better semantically)

The &#039;only&#039; problem one has to solve, is that we now have a &#039;table&#039;, and &#039;table cells&#039;; but no table row. It is also a limitation of HTML, that you can easily set up rows, but not columns. That&#039;s, personally, what I want most from CSS3.</description>
		<content:encoded><![CDATA[<p>@Daniel: while your tip on table-cell (and table-row) actually works, I would personally not use it: it&#8217;s a hack you&#8217;re forced to use, like in <abbr title="HyperText Markup Language">HTML</abbr> using a bunch of TDs to create inline-blocks&#8230; In practice, you would need to give all elements you would want in a table, a specific class (say, 3 paragraphs) and then declare said class to have display:table-cell. Semantically, these elements have something that takes them apart from the page&#8217;s body, so they should be marked as such &#8211; with a DIV. That, or use a restyled UL/LI combo instead (it may be better semantically)</p>
<p>The &#8216;only&#8217; problem one has to solve, is that we now have a &#8216;table&#8217;, and &#8216;table cells&#8217;; but no table row. It is also a limitation of HTML, that you can easily set up rows, but not columns. That&#8217;s, personally, what I want most from CSS3.</p>
<p class="postdetails"><em>Posted using Mozilla Firefox 3.0.5 on Linux.</em></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel</title>
		<link>http://www.webdevout.net/tidings/2009/02/04/another-css-vs-tables-debate/comment-page-1/#comment-4143</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Sun, 15 Feb 2009 12:38:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.webdevout.net/tidings/2009/02/04/another-css-vs-tables-debate/#comment-4143</guid>
		<description>Actually CSS allows table layout with less elements than HTML tables do.

You can simply make an element (and it&#039;s siblings) display: table-cell and CSS creates anonymous boxes for table-row and table.
That&#039;s good for the simple 3-column-layout.

If you want more rows you need display: table-row, but still no table.

Anyway, only time will tell how CSS Tables will find their way into the web in the next years.</description>
		<content:encoded><![CDATA[<p>Actually <abbr title="Cascading Style Sheets">CSS</abbr> allows table layout with less elements than <abbr title="HyperText Markup Language">HTML</abbr> tables do.</p>
<p>You can simply make an element (and it&#8217;s siblings) display: table-cell and CSS creates anonymous boxes for table-row and table.<br />
That&#8217;s good for the simple 3-column-layout.</p>
<p>If you want more rows you need display: table-row, but still no table.</p>
<p>Anyway, only time will tell how CSS Tables will find their way into the web in the next years.</p>
<p class="postdetails"><em>Posted using Mozilla Firefox 3.0.6 on Windows.</em></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scotandrsn</title>
		<link>http://www.webdevout.net/tidings/2009/02/04/another-css-vs-tables-debate/comment-page-1/#comment-4139</link>
		<dc:creator>Scotandrsn</dc:creator>
		<pubDate>Thu, 12 Feb 2009 21:13:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.webdevout.net/tidings/2009/02/04/another-css-vs-tables-debate/#comment-4139</guid>
		<description>There are so many things wrong with that rant, it would take pages to sift it all out. I couldn&#039;t even bring myself to finish reading it.

Early on, the blogger declares that if CSS is too hard for the apparent army of geniuses at the design firm Maxdesign from which he drew his faulty 3-column layout, then it must be worthlessly impossible.

A look at Maxdesign&#039;s site however, is revealing. The entire firm seems to consist largely of one Russ Weakly. Does a solid business have their top manager&#039;s personal e-mail address as their main contact, as on &lt;a href=&quot;http://www.maxdesign.com.au/contact/&quot; title=&quot;&#039;Contact Us&#039; page for Maxdesign&quot;&gt;this page&lt;/a&gt;? A look at their promoted sites, or at least &lt;a href=&quot;http://www.maxdesign.com.au/sites/&quot; title=&quot;&#039;Sites&#039; page for Maxdesign&quot;&gt;the thumbnails of same&lt;/a&gt; suggest they stick to two or three base layouts and the rest is Photoshop.

I&#039;d hardly place them on a pedestal as being any kind of world class web design firm. And I certainly wouldn&#039;t stake my own credibility on such a perception.</description>
		<content:encoded><![CDATA[<p>There are so many things wrong with that rant, it would take pages to sift it all out. I couldn&#8217;t even bring myself to finish reading it.</p>
<p>Early on, the blogger declares that if <abbr title="Cascading Style Sheets">CSS</abbr> is too hard for the apparent army of geniuses at the design firm Maxdesign from which he drew his faulty 3-column layout, then it must be worthlessly impossible.</p>
<p>A look at Maxdesign&#8217;s site however, is revealing. The entire firm seems to consist largely of one Russ Weakly. Does a solid business have their top manager&#8217;s personal e-mail address as their main contact, as on <a href="http://www.maxdesign.com.au/contact/" title="'Contact Us' page for Maxdesign">this page</a>? A look at their promoted sites, or at least <a href="http://www.maxdesign.com.au/sites/" title="'Sites' page for Maxdesign">the thumbnails of same</a> suggest they stick to two or three base layouts and the rest is Photoshop.</p>
<p>I&#8217;d hardly place them on a pedestal as being any kind of world class web design firm. And I certainly wouldn&#8217;t stake my own credibility on such a perception.</p>
<p class="postdetails"><em>Posted using Mozilla Firefox 3.0.6 on Windows.</em></p>
]]></content:encoded>
	</item>
</channel>
</rss>
