Hallo zusammen. Inzwischen suche ich folgenden Fehler seit Stunden:
Ich hab ein Gerüst aus einer Tabelle mit 4 Zellen, in diesen Zellen wird jeweils wieder eine Tabelle dargestellt.
Soweit, so gut...nur leider wird mir zwischen den Zellen der "Übertabelle" und den darin enthaltenen Tabellen immer 1px Abstand angezeigt, egal was ich damit mache. Weder cellspacing, cellpadding noch margin oder padding wirken.
Anebi der relevante Code:
CSS:
------
<style type="text/css">
table {
width:100%;
border-collapse:collapse;
cellspacing:0;
cellpadding:0;
border:1px solid blue; //Nur für den Test
margin:0px;
padding:0px;
}
.td_inner
{
white-space: nowrap;
border:1px solid #888888;
text-align:left;
padding-left:5px;
}
.td_firma
{
white-space: nowrap;
border:1px solid #888888;
background-color:#BBBBBB;
text-align:left;
padding-left:5px;
font-weight:bold;
}
.no_border_left
{
border-left:none;
}
.bg {
background-color:#FFFFFF;
}
.bg_alt {
background-color:#EEEEEE;
}
.td_uebertabelle {
width:25%;
border:1px solid red; //Nur für den Test
}
</style>
HTML:
-----
<body>
<table>
<tr>
<td>
Klappenverzeichnis
</td>
<td rowspan="2" colspan="3">
<div align="right">
<img src="XXX" title="Logo">
</div>
</td>
</tr>
<tr>
<td>
<?php echo date("d.m.Y",time()); ?>
</td>
</tr>
<tr>
<td class="td_uebertabelle">
<table>
<?php echo $tabelle['1']; ?>
</table>
</td>
<td class="td_uebertabelle">
<table>
<?php echo $tabelle['2']; ?>
</table>
</td>
<td class="td_uebertabelle">
<table>
<?php echo $tabelle['3']; ?>
</table>
</td>
<td class="td_uebertabelle">
<table>
<?php echo $tabelle['4']; ?>
</table>
</td>
</tr>
</table>
</body>