[
Lists Home |
Date Index |
Thread Index
]
Jonathan Robie wrote:
>
> I really want support for basic document hierarchies, which XHTML is not
> really designed for. I could useful structure if I modified my local
> XHTML DTD so that H1-H6 could only be used together with DIV elements
> like this:
>
> <div>
> <h1>Hierarchy is good.</h1>
> <p>Boy, do I miss 'section' elements when I use XHTML.</p>
> <div>
> <h2>Nested hierarchy is great</h2>
> <p>But a browser can read this as is.</p>
> </div>
> <div>
>
It is too bad that the XHTML 2.0 WG has strayed[1], as this is
supported in XHTML 2.0:
<section>
<h>Hierarchy is good.</h>
<p>Boy, do I miss 'section' elements when I use XHTML.</p>
<section>
<h>Nested hierarchy is great</h>
<p>But a browser can read this as is.</p>
</section>
</section>
[1] http://zeldman.com/daily/0103b.shtml#skyfall
-joe
--
http://BitWorking.org
http://WellFormedWeb.org
|