Bonjour à tous,
je vais avoir plusieurs table par page.
Le haut de la table est constituée d'une image indiquant le titre et changeant à chaque page. Donc je n'ai pas opté pour le CSS.
Mes bords gauche et droite sont des cellules et sont constitué d'un pixel transparent et d'une image en fond pour que ça ce duplique vu que les tables vont être amener à grandir en hauteur.
Sous explorer, pas de soucis.
Sous firefox, j'ai un décalage entre l'image du haut de la table, et le commencement de mes bords.Je vois pas du tout.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 <table width="750" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td colspan="3" height="24"><p class="bold"><img src="../title-v2/t_petites-annonces.gif" width="750" height="24" /></p></td> </tr> <tr> <td width="5" height="100%" background="../commun-v2/cadre/gauche.gif"><img src="../commun/pix-trans.gif" width="1" height="100%" /></td> <td width="740" valign="top" bgcolor="#FFFFFF"><p align="center" class="bold"><br /> blabla </td> <td height="100%" width="5" background="../commun-v2/cadre/droite.gif"><img src="../commun/pix-trans.gif" width="1" height="100%" /></td> </tr> <tr> <td height="15" colspan="3"><img src="../commun-v2/cadre/bloc-bas.gif" width="750" height="18" /></td> </tr> </table>
Partager