Moin alleine!
Ich habe eine Frage.
OK
Ist es möglich eine Tabelle in einer anderen Tabellen-Zelle zu erstellen?
Ja
Oder kann ich nur ein Iframe nutzen?
"Sie haben bereits alle Fragen verbraucht, ..." - SCNR
Wofür? Warum? Wo? Weshalb? Am besten überhaupt nicht!Gruß Gunther
Gunter -> Korintenkac... ;-)
Soweit meine Html-Kenntnisse zutreffen, würde ich sagen: Das geht!
Du kannst eigentlich (fast) alles in eine Tabelle packen, auch andere Tabellen. Wie das in Xhtml ist, weiss ich aber nicht genau.
Ein Beispiel:
<html>
<head>
<title>tabelleintabelleintabelle</title>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<style type="text/css">
<!--
td {border:1px solid black; padding:10px}
-->
</style>
</head>
<body>
<table>
<tr>
<td>Hallo 1</td>
<td>Hallo 2</td>
</tr>
<tr>
<td>Hallo 3
<table>
<tr>
<td>Hallo 3.1</td>
<td>Hallo 3.2</td>
</tr>
<tr>
<td>Hallo 3.3</td>
<td>Hallo 3.4</td>
</tr>
</table>
</td>
<td>Hallo 4</td>
</tr>
</table>
</body>
</html>
hoffe, das hilft dir weiter!
Gruss, Nils