<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.3" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: Tables go out the window</title>
	<link>http://binarybonsai.com/archives/2003/08/28/tables-go-out-the-window/</link>
	<description>Halb mensch, halb ding.</description>
	<pubDate>Fri, 04 Jul 2008 13:46:57 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
		<item>
		<title>By: Michael</title>
		<link>http://binarybonsai.com/archives/2003/08/28/tables-go-out-the-window/#comment-1316</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid>http://binarybonsai.com/archives/2003/08/28/tables-go-out-the-window/#comment-1316</guid>
		<description>And certainly &lt;a href="http://www.kottke.org/03/08/030828web_standard.html"&gt;this&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>And certainly <a href="http://www.kottke.org/03/08/030828web_standard.html">this</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nighteye</title>
		<link>http://binarybonsai.com/archives/2003/08/28/tables-go-out-the-window/#comment-1314</link>
		<dc:creator>Nighteye</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid>http://binarybonsai.com/archives/2003/08/28/tables-go-out-the-window/#comment-1314</guid>
		<description>I don't get it, what is it about you and tables? Ever heard of the expression; "If it ain't broke, then don't try and fix it". Tables work, and they offer a greater compability for users and if it looks the same or better, why don't just stick with them? :-)</description>
		<content:encoded><![CDATA[<p>I don&#8217;t get it, what is it about you and tables? Ever heard of the expression; &#8220;If it ain&#8217;t broke, then don&#8217;t try and fix it&#8221;. Tables work, and they offer a greater compability for users and if it looks the same or better, why don&#8217;t just stick with them? :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://binarybonsai.com/archives/2003/08/28/tables-go-out-the-window/#comment-1315</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid>http://binarybonsai.com/archives/2003/08/28/tables-go-out-the-window/#comment-1315</guid>
		<description>Why use semantically correct code? Well for a variety of reasons.

1) Longevity - When my code is dug up many years from now without it's accompanying stylesheet it will retain it's readability due to the fact markup was used in the fashion it was intended for. This does not cover merely the use of headers, but also the table element. This is for a variety of reasons

2) Cross-browser and device - If you stay within the realms of standards and semantically, that is structurally correct code, chances are that your site will be capable of showing in next generation browsers as easily as it will in current generation as well as last generation. And on top of that it'll probably degrade easily to for instance a PDA or phone if needed and whatever else that you haven't thought of which might appear sometime in the future. And I'll even throw in &lt;a href="http://www.simplebits.com/archives/2003/08/27/simplequiz_part_i_headings.html"&gt;a good example&lt;/a&gt;.

3) Accessibility - While probably not all that relevant for this particular site, there is no harm in making sure that handicapped people have as much of an advantage as I can give them when they happen to come by. Nested tables and cluttered HTML 4 font tags and what have you certainly don't help much.

4) Extensibility - If using div's only, the idea is that the entire design, including all elements can be changed around using only the CSS. As soon as I start taining my structure with div's for layout and not for data for which a table is actually needed, that ability deminishes fast.

There is nothing wrong in terms of correct use of XHTML (or HTML for that matter) if you use a table for layout. But there are levels of greatness when it comes to code structure, and using tables is not a 'good thing'.

Read more &lt;a href="http://www.zeldman.com/daily/0803a.shtml#spelling"&gt;here&lt;/a&gt; and &lt;a href="http://www.stopdesign.com/log/2003/08/28/quizzical.html"&gt;here&lt;/a&gt; and of course &lt;a href="http://www.google.dk/search?q=semantics+structure+css+xhtml&#38;ie=UTF-8&#38;oe=UTF-8&#38;hl=en&#38;btnG=Google+Search"&gt;here&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>Why use semantically correct code? Well for a variety of reasons.</p>
<p>1) Longevity &#8211; When my code is dug up many years from now without it&#8217;s accompanying stylesheet it will retain it&#8217;s readability due to the fact markup was used in the fashion it was intended for. This does not cover merely the use of headers, but also the table element. This is for a variety of reasons</p>
<p>2) Cross-browser and device &#8211; If you stay within the realms of standards and semantically, that is structurally correct code, chances are that your site will be capable of showing in next generation browsers as easily as it will in current generation as well as last generation. And on top of that it&#8217;ll probably degrade easily to for instance a <span class="caps">PDA</span> or phone if needed and whatever else that you haven&#8217;t thought of which might appear sometime in the future. And I&#8217;ll even throw in <a href="http://www.simplebits.com/archives/2003/08/27/simplequiz_part_i_headings.html">a good example</a>.</p>
<p>3) Accessibility &#8211; While probably not all that relevant for this particular site, there is no harm in making sure that handicapped people have as much of an advantage as I can give them when they happen to come by. Nested tables and cluttered <span class="caps">HTML</span> 4 font tags and what have you certainly don&#8217;t help much.</p>
<p>4) Extensibility &#8211; If using div&#8217;s only, the idea is that the entire design, including all elements can be changed around using only the <span class="caps">CSS</span>. As soon as I start taining my structure with div&#8217;s for layout and not for data for which a table is actually needed, that ability deminishes fast.</p>
<p>There is nothing wrong in terms of correct use of <span class="caps">XHTML</span> (or <span class="caps">HTML</span> for that matter) if you use a table for layout. But there are levels of greatness when it comes to code structure, and using tables is not a &#8216;good thing&#8217;.</p>
<p>Read more <a href="http://www.zeldman.com/daily/0803a.shtml#spelling">here</a> and <a href="http://www.stopdesign.com/log/2003/08/28/quizzical.html">here</a> and of course <a href="http://www.google.dk/search?q=semantics+structure+css+xhtml&#38;ie=UTF-8&#38;oe=UTF-8&#38;hl=en&#38;btnG=Google+Search">here</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://binarybonsai.com/archives/2003/08/28/tables-go-out-the-window/#comment-1312</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid>http://binarybonsai.com/archives/2003/08/28/tables-go-out-the-window/#comment-1312</guid>
		<description>Propeller hat?</description>
		<content:encoded><![CDATA[<p>Propeller hat?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: duck</title>
		<link>http://binarybonsai.com/archives/2003/08/28/tables-go-out-the-window/#comment-1313</link>
		<dc:creator>duck</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid>http://binarybonsai.com/archives/2003/08/28/tables-go-out-the-window/#comment-1313</guid>
		<description>*Sigh*, I thought you'd remember... :-) A few days ago we drew a parallel between yours and Calvin's impatience, regarding word from I/O, and a propeller hat, respectively...

I was just being curious - in a silly way - as to wheather you'd heard from I/O or not.

But then again, since it's not plastered all over your site, I already know you haven't... ;-)</description>
		<content:encoded><![CDATA[<p><strong>Sigh</strong>, I thought you&#8217;d remember&#8230; :-) A few days ago we drew a parallel between yours and Calvin&#8217;s impatience, regarding word from I/O, and a propeller hat, respectively&#8230;</p>
<p>I was just being curious &#8211; in a silly way &#8211; as to wheather you&#8217;d heard from I/O or not.</p>
<p>But then again, since it&#8217;s not plastered all over your site, I already know you haven&#8217;t&#8230; ;-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean</title>
		<link>http://binarybonsai.com/archives/2003/08/28/tables-go-out-the-window/#comment-1307</link>
		<dc:creator>Sean</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid>http://binarybonsai.com/archives/2003/08/28/tables-go-out-the-window/#comment-1307</guid>
		<description>You probably hate my site then. :) Nothing but tables (too lazy to learn CSS). If I ever decide to change the site's layout, those tables are going to be a bitch to update.</description>
		<content:encoded><![CDATA[<p>You probably hate my site then. :) Nothing but tables (too lazy to learn <span class="caps">CSS</span>). If I ever decide to change the site&#8217;s layout, those tables are going to be a bitch to update.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://binarybonsai.com/archives/2003/08/28/tables-go-out-the-window/#comment-1308</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid>http://binarybonsai.com/archives/2003/08/28/tables-go-out-the-window/#comment-1308</guid>
		<description>Indeed. My new layout isn't 100% right yet either. Tables are an easy way out of these thing, but there is a great deal of satisfaction in being able to control all the layout on the entire site from one single CSS file :)</description>
		<content:encoded><![CDATA[<p>Indeed. My new layout isn&#8217;t 100% right yet either. Tables are an easy way out of these thing, but there is a great deal of satisfaction in being able to control all the layout on the entire site from one single <span class="caps">CSS</span> file :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RSK</title>
		<link>http://binarybonsai.com/archives/2003/08/28/tables-go-out-the-window/#comment-1309</link>
		<dc:creator>RSK</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid>http://binarybonsai.com/archives/2003/08/28/tables-go-out-the-window/#comment-1309</guid>
		<description>I totally get nothing? Explain!</description>
		<content:encoded><![CDATA[<p>I totally get nothing? Explain!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://binarybonsai.com/archives/2003/08/28/tables-go-out-the-window/#comment-1310</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid>http://binarybonsai.com/archives/2003/08/28/tables-go-out-the-window/#comment-1310</guid>
		<description>Get nothing out of what exactly? Of why tables are a no-no in layout or why div's are a monumental frustration in layout?</description>
		<content:encoded><![CDATA[<p>Get nothing out of what exactly? Of why tables are a no-no in layout or why div&#8217;s are a monumental frustration in layout?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: duck</title>
		<link>http://binarybonsai.com/archives/2003/08/28/tables-go-out-the-window/#comment-1311</link>
		<dc:creator>duck</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid>http://binarybonsai.com/archives/2003/08/28/tables-go-out-the-window/#comment-1311</guid>
		<description>Still no propeller hat?</description>
		<content:encoded><![CDATA[<p>Still no propeller hat?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: name Frank Xu</title>
		<link>http://binarybonsai.com/archives/2003/08/28/tables-go-out-the-window/#comment-1941</link>
		<dc:creator>name Frank Xu</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid>http://binarybonsai.com/archives/2003/08/28/tables-go-out-the-window/#comment-1941</guid>
		<description>we are the biggest exporter of bonsai tables(stands),
if you are interested in our products,please contact us.
Best regards.</description>
		<content:encoded><![CDATA[<p>we are the biggest exporter of bonsai tables(stands),<br />
if you are interested in our products,please contact us.<br />
Best regards.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rassi</title>
		<link>http://binarybonsai.com/archives/2003/08/28/tables-go-out-the-window/#comment-1942</link>
		<dc:creator>Rassi</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid>http://binarybonsai.com/archives/2003/08/28/tables-go-out-the-window/#comment-1942</guid>
		<description>LOL! What a perfect example of a search gone wrong. Mr. Frank here probably searched for Bonsai Tables, and then got to a page that has nothing to do with bonsai other than the name, and an entry talking about HTML tables...</description>
		<content:encoded><![CDATA[<p>LOL! What a perfect example of a search gone wrong. Mr. Frank here probably searched for Bonsai Tables, and then got to a page that has nothing to do with bonsai other than the name, and an entry talking about <span class="caps">HTML</span> tables&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://binarybonsai.com/archives/2003/08/28/tables-go-out-the-window/#comment-1948</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid>http://binarybonsai.com/archives/2003/08/28/tables-go-out-the-window/#comment-1948</guid>
		<description>More a perfect example of comment spam :), I'm going to disable the link and let this stay here just for the comic value :D</description>
		<content:encoded><![CDATA[<p>More a perfect example of comment spam :), I&#8217;m going to disable the link and let this stay here just for the comic value :D</p>
]]></content:encoded>
	</item>
</channel>
</rss>
