Bonjour
J'ai fais plusieur site en HTML
j'ai centré ma page pour qu'elle soit au milieu de mon navigateur
mais si je fais un zoom avec Internet Explorer (ex : 125 %)
ma page ne s'affiche pas integralement

voila mon css (en pense que c'est le div global qui casse tout, je l'ai peut etre mal fait)

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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
@charset "utf-8";
/* CSS Document */
 
* {
	margin: 0;
	padding: 0;
 
}
 
body {
background-color: #000000;
color: #000000;
font-size: 20px;
text-align: center;
}
 
#global {
position:absolute;
left: 50%;
top: 50%;
width: 800px;
height: 630px;
margin-top: -315px; /* moitié de la hauteur */
margin-left: -400px; /* moitié de la largeur */
font-weight: bold;
font-family: Verdana, Arial, sans-serif;
font-size: 20px;
background-image: url("fond.gif");
background-repeat : no-repeat; 
 
}
/*Tableau*/
body table {
	color: #FFF;
	font-size: 15px;
}
/* GLOBAL */
#centre {
         margin-left:auto;
         margin-right:auto;
         height: 630px;
         width: 800px;
         margin-top: 30px; 
}
 
/* CONTENU */
 
/* SITE */	
#contenu {
	text-align: left;
	height: 380px;
	padding-top: 0px;
	margin-left: 20px;
	margin-top: 0px;
 
 
}
 
#text {
	font-size: 15px;
	margin-right: 10px;
	font-weight: normal;
	color: #FFFFFF;
}
/* PIED de page */
#pied { 
	margin-bottom: 10px;
	font-weight: normal;
	font-size: 12pt;
}
 
/*blanc en haut*/
#haut {
	margin-top: 0px;
	height: 603px; 
}