Ja, möglicherweise ist der Text aber auch (sinnvollerweise) in Textabsätzen hinterlegt :)
Möglicherweise müffelt es dann aber auch. :-)
Ja natürlich - aber es ist durchaus auch in Datentabellen sinnvoll, p-Elemente in td-Elemente zu verschachteln :)
Ich hab jetzt ein bisschen herumprobiert aber ich habs nicht geschafft, dass ich die Texte der zwei Zeilen ganz zusammenbringe aber es ist mir nicht gelungen. Vielleicht weiß es ja von euch jemand wie das geht?
Mein Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html><head><title>border-spacing</title>
<style type="text/css">
td {
border-spacing:0px;
max-heigth:10px;
margin-top:0px;
align:top;
}
tr {
border-spacing:-3px;
max-heigth:5px;
margin-top:0px;
}
</style>
</head><body>
<table border="0">
<tr>
<td>Haus</td>
<td>Auto</td>
<td>Boot</td>
</tr>
<tr>
<td>Haus</td>
<td>Auto</td>
<td>Boot</td>
</tr>
</table>
</body></html>