Bonjour
je suis en train de faire un site en HTML
et j'ai un tableau avec mon menu dedans mais j'aimerais qu'il soit toujours centre et en bas de mon image
je pense a une position absolu mais je n'y arrive pas
merci de m'aider.

mon code est :

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
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
<!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=utf-8" />
<TITLE>Wéb$@çhàe</TITLE>
<style type="text/css">
.body {
        background-image:url(ecran1.gif);
        background-repeat:no-repeat;
        background-position: center center;
        height: 600px;
        }
        .zoom {
height:400px;
margin:auto;
}
.zoom p {
text-align:center;
}
.zoom img {
width:55px;
height:55px;
}
.zoom img:hover {
width:90px;
height:90px;
}
</style>
</head>
 
<body bgcolor="#000000">
<div class="body" >
<div class="zoom">
  <div align="center">
 
      <table width="795" border="0" align="center">
        <tr>
          <th width="52" scope="col">&nbsp;</th>
          <th width="113" height="94" scope="col"><img src="menu/accueil.gif"
         alt="accueil" /></th>
          <th width="114" scope="col"><img src="menu/profil.gif"
         alt="profil" /></th>
          <th width="115" scope="col"><img src="menu/cv.gif"
         alt="cv" /></th>
          <th width="113" scope="col"><img src="menu/presentation.gif"
         alt="presentation" /></th>
          <th width="90" scope="col"><img src="menu/liens.gif"
         alt="liens" /></th>
          <th width="103" scope="col"><img src="menu/contact.gif"
         alt="contact" /></th>
          <th width="61" scope="col">&nbsp;</th>
        </tr>
      </table>
    </div>
    <p>&nbsp;</p>
</div>
</div>
</body>
</html>