Bonjour ; j'ai un problème d'affichage de ma page web :
sur FixeFox c'est impecable mais sur IE tous s'affiche en grand c'est vraiment du
sachant que j'ai une page HTML et une autre styles.css
styles.css
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
body
{
   width: 760px;
   margin: auto; /* Pour centrer notre page */
   margin-top: 20px; /* Pour éviter de coller avec le haut de la fenêtre du navigateur. Essayez d'enlever pour voir ! */
   margin-bottom: 20px;    /* Idem pour le bas du navigateur */
   /*background-image: url("images/fond.png"); /* Une petite image de fond pour éviter d'avoir un vieux fond blanc :p */
    font-size: 100%;
	background-color:  #626266;
}
/* L'en-tête */
 
#en_tete
{
   width: 760px;
   height: 100px;
   background-color: #f60000;
   text-align: center; /* Pour centrer le titre */
   font-family: Arial, Verdana, serif; /* On essaie d'avoir Arial Black en priorité */
   font-size: 100%;
   color:#ffffff;
 
 
}
/* Le corps de la page */
#corps
{
   /*margin-left: 00px;*/
   margin-bottom: 20px;
   padding: 5px;
   color: #000000;
   background-color: #ffffff;
  /* background-image: url("images/motif.png");*/
  /* background-repeat: repeat-x;*/
   font-size: 100%;
   border: 2px solid black;
}
#monForm
{
width: 60%;
}
#monForm p
{
margin: 2px 0;
}
#monForm fieldset:hover
{
background-color: #FFF;
}
#monForm fieldset legend
{
padding: 0 10px;
border-left: #CCC 1px solid;
border-right: #CCC 1px solid;
font-size: 1.2em;
color: #000000;
}
/* Label aligné les label + couleurs orange*/
#monForm label
{
background-color:  #626266;
display: block;
width: 39%;
float: left;
padding-right: 1%;
text-align: right;
letter-spacing: 1px;
}
/*survole des labels*/
#monForm label:hover
{
font-weight: bold;
}
#monForm .form_label_nostyle
{
background: none;
}
/* Input */
 
#monForm input:hover , #monForm input:focus
{
border: #999 1px solid;
background-color: #DDEEFF;
}
#pied_de_page
{
   padding: 5px;
   clear: both;
 
   text-align: center;
 
   color: #B3B3B3;
   background-color: #626262;
   /*background-image: url("images/motif.png");
   background-repeat: repeat-x;*/
   font-size: 100%;
   border: 2px solid black;
}
merci