QUOTE(Arbitrator @ 19 Jun, 2006 - 02:40 AM)

Oh? That's an extremely strict interpretation. I do believe that
div means division and that their only meaning is to demarcate separate areas of a page. While this isn't a shining example of the
div element at work, it's hardly out of bounds. The
div themselves are meaningless without being styled, yet so is the common empty
div that has its background styled for header images (in accordance with the separation of style and structure doctrine). Dis-permitting this also makes things like
this impossible.
Yes, this might be the a strict explanation for the usage of
divs, but styling with tables started out in a similar way. The discussion on the page you cited spends several sentences justifying the use of nested divs for that effect, and at the bottom they stress, that it is a new method, and the automatic generation with Javascript is possible. This is not by chance, IMHO this is the way these things should be done, the page is only an explanation of the idea. With the correct usage of XHTML and CSS your markup should be
meaningful. I think you know the
css Zen Garden site, it shows very well, that how can the same
content be presented in a different way with different styling. Try to think that your markup might be read not only by browsers, but other applications - and it might even cause
interpretation problems for voice readers.
QUOTE(Arbitrator @ 19 Jun, 2006 - 02:40 AM)

Structure is simply the most basic means of presentation, otherwise there would be no need for things like tables which are actually a form of presentation (of tabular data) or div or p since their only purpose IS presentation since the user cannot see them.
Yes and no! Structure is a logical way of presentation. However it's main goal is interpretation! That's why
tables and
ps are an integral part of it: they both represent
logical units of the document - as learnt in grammar / literature class. This is why you won't show tabular data with nested
divs, because screen readers would go berserk and the whole thing would lose it's meaning.