Forum de discussion
Forum « Programmation HTML » (archives)
colonnes verticales avec les tableaux HTML impossible!
Envoyé: 14 mai 2003, 13h03 par jm
j'essaie en inversant "tr" et "td" mais que je fasse le premier exemple ou le deuxieme cela ne marche pas!
1er n'affiche rien
2 eme met les 2 dernières colonnes en dessous des 2 premières!
(vide.gif est une image de 1 pixel transparente)
sauriez vous comment faire?
merci
<html>
<body>
<table border="0" cellspacing="0" cellpadding="0">
<td>
<tr height="300" width="70" bgcolor="yellow"></tr>
<tr height="0" width="70" bgcolor="yellow"></tr>
</td>
<td>
<tr height="50" width="10" bgcolor="blue"></tr>
<tr height="250" width="10" bgcolor="red"></tr>
</td>
<td>
<tr height="100" width="10" bgcolor="blue"></tr>
<tr height="200" width="10" bgcolor="red"></tr>
</td>
</table>
</body>
</html>
<html>
<body>
<table border="0" cellspacing="0" cellpadding="0">
<td><!--ROWSPAN="2"-->
<tr><img height="300" width="70" src="vide.gif"></tr>
<tr><img height="0" width="70" src="vide.gif"></tr>
</td>
<td>
<tr bgcolor="white"><img height="50" width="10" src="vide.gif"></tr>
<tr><img height="250" width="5" src="vide.gif"></tr>
</td>
</table>
</body>
</html>
Réponses
|