Io vorrei fare una cosa del genere (allego sotto l'immagine)
Come posso fare??
Io vorrei fare una cosa del genere (allego sotto l'immagine)
Come posso fare??
Io ho provato a fare così
Ma non mi va sapete come mai??codice:<table border=1 height=100% width=100%> <tr> <td height=20%> Links alto </td></tr> <tr> <td height=80%> Menù</td> <td height=20%> centro </td> </tr> <tr> <td height=20%> basso </td></tr> <table>
codice:<table border="1" width="746" height="493"> <tr> <td height="487" width="736"> <table border="1" width="735" height="322"> <tr> <td width="119" height="316"></td> <td width="600" height="316"></td> </tr> </table> </td> </tr> </table>![]()
codice:<table width="200"> <tr height="50"> <td colspan="2"> a </td> </tr> <tr height="150"> <td width="50">b </td> <td width="150">c </td> </tr> <tr height="50"> <td colspan="2"> d </td> </tr> </table>
Heaven's closed. Hell sold out.
Linux 2.6.26-2-amd64
Debian squeeze
in questo modo crei solo la struttura centrale delle due colonne, mancano le righe in alto e bassoOriginariamente inviato da Markus_2889
![]()
Heaven's closed. Hell sold out.
Linux 2.6.26-2-amd64
Debian squeeze
<Cosa serve questo comando colspan="2"
a far si che due colonne vengano riunite insieme
x le righe esiste il corrispettivo rowspan
![]()
Heaven's closed. Hell sold out.
Linux 2.6.26-2-amd64
Debian squeeze
In pratica unisce la tabella b ed c con d ed b e c con a esatto??
no.![]()
la tabella ke serve a te è come questa
ora.. quello ke hai mostrato nella tua figura si rappresenta con una come questa qui, dove devi però far sì che a1 e a2 sian una cella sola -> usi colspan="2" (unisce 2 celle)codice:------------ |a1| a2 | ------------ | | | |b1| b2 | | | | ------------ |c1| c2 | ------------
idem x c1 e c2![]()
Heaven's closed. Hell sold out.
Linux 2.6.26-2-amd64
Debian squeeze
Adesso ho provato ha modificarlo ed ho fatto così
Ma io vorrei che menù sia infinito che posso aggiungere infinite cose è giusto come ho fatto??codice:<html> <head> <title>Ale90.it</title> <link rel="stylesheet" type="text/css" href="stili/style.css"> <style> .bordo { border-top: solid 1px #404056; border-right: solid 1px #404056; border-bottom: solid 1px #404056; border-left: solid 1 px #404056; } </style> </head> <body bgcolor=D5F0F9 text="darkblue" link="darkblue" vlink="darkblue" alink="darkblue"> <center> <table width="800" border=1 height=100%> <tr height="15%"> <td colspan="2" align=center> a </td> </tr> <tr height="70%"> <td width="20%" valign=top align=center> menù </td> <td width="80%">c </td> </tr> </table></center> </body> </html>