cellspacing="2"

Status
Nicht offen für weitere Antworten.
Es gibt statischen Bereich außen und dynamischen Bereich innen.

<table>...
</table>

stellt den dyn. Bereich dar. Wenn ich cellspacing="2" mache, dann fehlt der dyn. Bereich weiter nach innen, logisch. Aber ich will nur, das er unten nach innen fällt, bzw. nach oben springt!
 
Vielleicht hilft dir dieser Workaround weiter?

Code:
<table style="border:1px solid #000;" cellspacing="0" cellpadding="0">
<tr>
 <td><div style="margin:2px -1px 1px -1px;border:1px solid #000;">aha</div></td>
 <td><div style="margin:2px -1px 1px 0;border:1px solid #000;">soso</div></td>
</tr>
<tr>
 <td><div style="margin:1px -1px 2px -1px;border:1px solid #000;">aha</div></td>
 <td><div style="margin:1px -1px 2px 0;border:1px solid #000;">soso</div></td>
</tr>
</table>
 
Status
Nicht offen für weitere Antworten.
Zurück