in XHTML 2 soll dann auch
<p href="bla">Text</p>
gehen.Hm..? Welchem Zweck soll dies dann dienen?
Sollen am Ende alle Elemente "verlinkbar" sein?
Ja. Und zwar nicht nur wie jetzt schon als Zielpunkt eines Links, sondern auch als Startpunkt.
Dadurch wird der Quelltext dann auch einfacher:
bisher:
<ul class="Navigation">
<li><a href="foo.html"><img src="foo.png" alt="foo" /></li>
<li><a href="bar.html"><img src="bar.png" alt="bar" /></li>
</ul>
dann:
<nl>
<li href="foo.html" src="foo.png">foo</li>
<li href="bar.html" src="bar.png">bar</li>
</nl>
Gunnar
--
I never intended HTML source code (the stuff with the angle brackets) to be seen by users. […] To my surprise, people quickly became familiar with the tags and started writing their own HTML documents directly. (Tim Berners-Lee in Weaving the Web)
I never intended HTML source code (the stuff with the angle brackets) to be seen by users. […] To my surprise, people quickly became familiar with the tags and started writing their own HTML documents directly. (Tim Berners-Lee in Weaving the Web)