Hi!
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>table-Elemente als containing block</title>
<style>
table { border: 1px solid green; position: relative; border-spacing: 1em; }
tr:last-child::after { content:'4'; position: absolute; right: 0; bottom: 0; }
</style>
</head>
<body>
<table>
<tr><td>1</td><td>2</td><td>3</td><td>4</td></tr>
<tr><td>1</td><td>2</td><td>3</td></tr>
</table>
</body>
</html>
Ja, sowas habe ich auch schonmal benutzt. Aber hier ist ja die Tabelle relativ positioniert - im Threadverlauf war von Tabellen\_zellen\_ die Rede. Und den Inhalt einer Zelle in der Zelle positionieren zu können wäre mir persönlich auch wichtiger - das könnte ich einfach häufiger gebrauchen.
Viele Grüße,
Alexander