Hi, also ich versuche gerade 3 Tabellen in einer Zeile zu setzten. Die eine soll links sein, die zweite in der mitte und die dritte rechts. Das funktioniert auch, allerdings ist so jede Tabelle in einer Extra Zeile. Ich möchte sie alle in eine, und natürlich mit Abstand zwischen den Tabellen.
Hier ist mein HTML Code:
HTML
<html>
<head>
<meta http-equiv="Content-Language" content="de">
</head>
<body bgcolor="#000080">
<div align="left">
<table width=125 border=1 cellpadding=0 cellspacing=5 style="border-collapse: collapse" bordercolor="#FF0000" height="1" bgcolor="#000000">
<tr>
<td align="center" bgcolor="#000080" width="255" height="16" style="font-size: 10pt; font-family: Verdana, Arial">
<font color="#FFFFFF">Text</font></td>
</tr>
</table>
<div align="center">
<table width=125 border=1 cellpadding=0 cellspacing=5 style="border-collapse: collapse" bordercolor="#FF0000" height="1" bgcolor="#000000">
<tr>
<td align="center" bgcolor="#000080" width="255" height="16" style="font-size: 10pt; font-family: Verdana, Arial">
<font color="#FFFFFF">Text</font></td>
</tr>
</table>
<div align="right">
<table width=125 border=1 cellpadding=0 cellspacing=5 style="border-collapse: collapse" bordercolor="#FF0000" height="1" bgcolor="#000000">
<tr>
<td align="center" bgcolor="#000080" width="255" height="16" style="font-size: 10pt; font-family: Verdana, Arial">
<font color="#FFFFFF">Text</font></td>
</tr>
</table>
</div>
</body>
</html>
Alles anzeigen
Greets