Originariamente inviato da ufino
se per esempio creo una tabell di tre colonne e tot righe, come faccio a rendere "indipendenti" le tre colonne? ossia, come faccio a creare delle celle di dimensioni diverse in una colonna senza che le altre colonne si adattino automaicamente?
fai un annidamento di tabelle così:
codice:
<table border="1" width="100%">
<tr>
<td width="33%">
<table border="1" width="100%">
<tr>
<td width="100%">cella 1</td>
</tr>
<tr>
<td width="100%">cella 2</td>
</tr>
<tr>
<td width="100%">cella 3</td>
</tr>
</table>
</td>
<td width="33%">
<table border="1" width="100%" height="19">
<tr>
<td width="100%" height="48">cella 1.1</td>
</tr>
<tr>
<td width="100%" height="13">cella 1.2</td>
</tr>
</table>
</td>
<td width="34%">
<table border="1" width="100%" height="51">
<tr>
<td width="100%" height="45">cella 2</td>
</tr>
</table>
</td>
</tr>
</table>
così fai le tabelle di misure diverse indipendenti !