Bonsoir/Bonjour,
J'ai fais un menu html horizontal , sauf que lorsque je l'affiche dans un navigateur
la barre menu est alignée à gauche , une idée comment centrer mon menu ?
voici mon code html
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 <!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>Gestion des réclamations client</title> <style type="text/css"> <!-- ul { padding:0; margin:0; list-style-type:none; } li { float:left; /*pour IE*/ border-left:1px solid black; } ul li a { display:block; float:left; width:100px; line-height:50px; /*hauteur de l'image de fond*/ background:#3333FF repeat-x; color:#000033; text-decoration:none; text-align:center; } ul li a:hover { background:#3333FF; color:white; } #menu { height:auto; padding: 20pt; right: auto; left: auto; top:auto; bottom: auto; } --> </style> </head> <body> <table width="1234" border="5" bordercolor="#FFFFFF" bgcolor="#FFFFFF"> <tr> <td width="287" height="128" bordercolor="#FFFFFF"><img src="../../../Pictures/LogoFord.jpg" width="324" height="237" /></td> <td width="923" align="center" valign="middle" bordercolor="#FFFFFF"><span class="Style18">Gestion d'un Parc Informatique</span></td> </tr> </table> <p> </p> <div id="menu"> <ul> <li><a href="#">Accueil</a></li> <li><a href="#">Produits</a></li> <li><a href="#">Services</a></li> <li><a href="#">Références</a></li> <li><a href="#">Contacter nous</a></li> <li><a href="#">Partenaires</a></li> </ul> </body> </html>
Partager