thom: Tabelle in Tabelle : Text immer linksbündig beginnen

Beitrag lesen

Hallo,
ich möchte zur Strukturierung mehrere Tabellen ineinander schachteln. Dabei soll der Text in der innersten Tabelle auf der gleiche Linie linksbündig, wie der Text aus einer übergeordneten Tabelle liegen. Ist das möglich?
Also, dass innere "Hallo Welt" so mit dem äusseren "Hallo Welt" auf einer Linie links ausgerichtet sein.

thomas

  
<html>  
<head>  
<style type="text/css">  
    body {  
		border : 0px;  
		margin: 0px;  
		padding: 0px;  
	}  
	table {  
		border: 0px;  
		padding: 0px;  
		margin: 0px;  
		border-left: 4px;  
		padding-left: 0px;  
		margin-left: 0px;		  
		background-color:red;  
	}  
	td {  
		border: 0px;  
		padding: 0px;  
		margin: 0px;  
		border-left: 0px;  
		padding-left: 0px;  
		margin-left: 0px;				  
	}  
	tr {  
		border: 0px;  
		padding: 0px;  
		margin: 0px;  
		border-left: 0px;  
		padding-left: 0px;  
		margin-left: 0px;				  
	}  
</style>  
</head>  
<body>  
<table>  
<tr>  
<td>Hallo Welt</td>  
</tr>  
<tr>  
<td>  
<table>  
<tr>  
<td>  
<table>  
<tr>  
<td>  
<table>  
<tr>  
<td>Hallo Welt</td>  
</tr>	  
</table>							  
</td>  
</tr>	  
</table>				  
</td>  
</tr>	  
</table>	  
</td>  
</tr>	  
</table>  
</body>  
</html>