Om nah hoo pez nyeetz, Gunnar Bittersmann!
@@apsel:
nuqneH
was spricht gegen
<dl> // Hier ein Rahmen
> > <dt>foo</dt> // Border-bottom
> > <dd>bar</dd> // Border-bottom
> > </dl>
Unerlaubte Vereinfachung.
<dl>
> <dt>foo</dt>
> <dd>bar</dd>
> <dt>baz</dt>
> <dd>quz</dd>
> </dl>
Wie willst du einen Rahmen um foo und bar und einen anderen um bar und baz hinbekommen?
Und nein,
<dl>
> <dt>foo</dt>
> <dd>bar</dd>
> </dl>
> <dl>
> <dt>baz</dt>
> <dd>quz</dd>
> </dl>
ist kein sinnvolles Markup. Qapla'
zugegeben, das nicht sinnvolle Markup ist mir zuerst eingefallen.
dl bekommt den Border,
dd und dt bekommen Border-bottom
last-of-type von dd und dt bekommen kein Border-bottom
Matthias
--