Bonjour,
J'essaye de conscruire une page html et j'utilise des tableaux afin de ne pas trop y perdre du temps.
J'aimerais savoir pourquoi avec mon code, les cellules sont separees par une ligne blanche, que je n'arrive pas a supprimer.
Merci pour votre aide.
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
16
17
18
19 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Accueil</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" type="text/css" href="css/default.css" /> </head> <body> <table border=0 cellspacing=0 align=center> <tr height=181><TH ROWSPAN=4><img src="pictures/left.png"></TH><td><img src="pictures/header.png"></td><TH ROWSPAN=4><img src="pictures/right.png"></TH></tr> <tr><td height=222px>Menu</td></tr> <tr><td width=752 class="text" height=580px> BlaBlaBla </td></tr> <tr height=119px><td><img src="pictures/footer.png"></td></tr> </table> </body> </html>
Partager