Bonjour a tous ,

j'essaye de realiser un formulaire avec un menu,
pour cela j'etulise des balises table imbriqués avec une feuille de style, une table qui contient deux tables, pour former une cadre , alors le probleme que j'ai c'est que la partie du menu est legerement en acart verticalement par rapport a la partie en dessous , je ne sais pas quel attribut dois je utiliser , j'ai essayer le valign = top; mais ca ne marche pas voila mon code :

Code html : 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
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
 
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Document sans nom</title>
</head>
<style>
 
 
ul#menu { 
     margin:0px;
     padding:0px;
     width: 650px; 
     height: 43px; 
     background: #FFF url(menu-bg.gif) top left repeat-x; 
     font-size: 12px; 
     font-family:Arial, Helvetica, sans-serif;
     font-weight: bold; 
     list-style-type: none; 
 
     padding: 0; }
 
ul#menu li {  
        float: left; 
        margin: 0 0 0 5px; }
ul#menu li a { 
        height: 43px; 
        color: #000; 
        text-decoration: none;
         
        float: left; 
        line-height: 200%; 
        padding: 8px 25px 0; }
ul#menu li a:hover { 
        color: #333; }
ul#menu li a.current{ 
        color: #FD0000;
        background: url(current-bg.gif) top left repeat-x; padding: 5px 15px 0; }
 
#container_screen{
width:100%;
}
 
 
#Bottonn{
width:200px;
}
 
</style>
 
<body>
<table border="2px"; cellspacing="0"; cellpadding="0"; align="left"; style="width=650px;">
	<tr>
		<table border="1px">
			<tr>
				<td>
					<ul id="menu">
        				<li ><a class="current" href="/onglet1">onglet1</a></li>
        				<li ><a href="/onglet2">onglet2</a></li>
        				<li ><a href="/onglet3">onglet3</a></li>
        				<li ><a href="/onglet4">onglet4</a></li>
					 </ul>
				</td>
			</tr>
		</table>
	</tr>
	<tr>
		<table style="background-color:#d9d9d9; width:650px;" border="1px" >
			<tr>
				<td>
					<FORM ACTION="#" METHOD=POST>
						<table>
							<tr>
								<td id="Botton1">
									<input style="width:180px;" type="button" value="botton1">
								</td>
								<td id="Bottonn">
									<input style="width:180px;" type="button" value="botton2">
								</td>
								<td rowspan="3" id="bottonn">
									<img src="Post_IT4g.gif"/>
								</td>					
							</tr>
							<tr>
								<td id="Bottonn">
									<input style="width:180px;" type="button" value="botton3">
								</td>
								<td id="Bottonn">
									<input style="width:180px;" type="button" value="botton4">
								</td>
							</tr>
							<tr>
								<td id="Bottonn">
									<input style="width:180px;" type="button" value="botton5">
								</td>
								<td id="Bottonn">
									<input style="width:180px;" type="button" value="botton6">
								</td>
							</tr>
						</table>
					</form>
				</td>
			</tr>
		</table>
	</tr>
</table>
 
</body>
</html>


merci pour vos eventuelles reponses .