Bonjour,
Je cherche à centrer le mot Accueil dans ma colonne et il ne l'est pas dans Chrome.
Mon code est le suivant :
Merci aux personnes qui se pencheront sur mon problème.
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 <html> <head> <style> body { background="#018080"; bgcolor="#018080";} ul {list-style-type: none; margin-left: -1; font: 14px Arial, sans-serif;} li {margin-bottom: 0;} .menu { background-color: #800000; cursor:hand; font-family: Arial; font-size:10; color: #f8a560; font-weight: bold;} .menu a { margin: 0px; width: 120px; height: 15px; display: block; text-align:center; border: 1px ; text-decoration: none; color: #f8a560; background: #800000;font-size: 9px; font-weight: bold;} .menu a:hover {font-size : 9px; font-family : helvetica, sans-serif; color : #800000; background: #f8a560; text-decoration : none;} .entete { background-color : #f8a560; border-color : #800000; color : #800000; font-family : Helvetica, sans-serif; font-size : 9px; text-align :center; font-style : italic; font-weight : bold; line-height : 15px; width: 120px; } </style> </head> <div align="center"> <center> <table border="0" width="120" cellspacing="0" cellpadding="0"> <tr><td class="entete">Sommaire</tr> <tr><td><ul class="menu"> <li><a href="accueil.html">Accueil</a></li> </ul></td></tr> </table> </center> </div> </body> </html>
Partager