Hallo wahsaga,
ach so, du stellst also ansprüche vergleichbar denen an ein DTP-programm :-)
ja, zugegeben, hier sind HTML, CSS und browser vermutlich überfordert. aber ganz so viel wollen sie m.E. auch gar nicht leisten - schließlich ist web- kein printdesign.
Nein, denn wenn ich eine Definitionsliste semanstisch falsch als Tabelle auszeichne, dann wird sie ohne Probleme meinen Ansprüchen gemäß dargestellt.
<!doctype html public "-//W3C//DTD HTML 4.0 //EN">
<html>
<head>
<title>Tabellarische Definitionsliste</title>
<meta name="author" content="Gernot Back">
<meta name="generator" content="Ulli Meybohms HTML EDITOR">
<style type="text/css">
[code lang=css]
td {
vertical-align:bottom;
padding:0 0 0 10px;
}
td.lemma {
background:url(dot.gif) repeat-x bottom;
position:relative;
top:-.2em;
padding:0 20px 0 0;
}
td > span {
position:relative;
top:0.2em;
}
td a {
text-decoration:none;
color:#0000AA;
position:relative;
top:.2em;
background-color:#FFFFFF;
}
td a:hover {
text-decoration:underline;
}
</style>
</head>
<body>
<table >
<tr>
<td class="lemma"><a href="mailto:chef@kloebner.de">Dr. Paul Klöbner</a></td>
<td><span>Chef</span></td>
</tr>
<tr>
<td class="lemma"><a href="mailto:spezi@bundestach.de">Guido Müller-Lüdenscheid (MdB)</a></td>
<td><span>Aufsichtsratsvorsitzender</span></td>
</tr>
<tr>
<td class="lemma"><a href="mailto:info@kloebner.de">Erna Hoppenstedt</a></td>
<td><span>Chefsekretärin</span></td>
</tr>
<tr>
<td class="lemma"><a href="mailto:kurzwaren@kloebner.de">Hans Hallmackenreuther</a></td>
<td><span>Abteilungsleiter Kurzwaren</span></td>
</tr>
</table>
</body>
</html>
[/code]
Gruß Gernot