Bonjour, tout est dit dans le titre.

Mes divs sont décalées sur FF direction droite et sur IE direction gauche. // UN \\ pixel!

(visible ici)

Quelqu'un pourrait-il m'aider s'il vous plaît?

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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
   "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Arrh, le pixel!</title>
</head>
 
 
 
 <style type="text/css">
html{
  margin:0px;
  padding:0px;
}
 
body{
  margin:0px;
  padding:0px;
  background-color:#ffffff;
  background-image:url(./back_6.jpg);
  font-size:12px;
  background-position:top center;
  font-family:Arial,Helvetica,sans-serif;
  color:#ff33ff;
  text-align:center;
  background-repeat:repeat-y;
}
 
#content-parent{
  width:1000px;
  background-color:transparent;
  margin:auto;
  text-align:center;
}
 
#content-child{
  width:944px;
  margin:auto;
  background-color:transparent;
  text-align:left;
}
 
#head-hight{
  width:944px;
  height:70px;
  background-color:white;
}
 
#head-low{
  width:944px;
  height:auto;
  background-color:transparent;
  
}
 
#page{
  margin-top:150px;
  background-color:#333333;
  width:944px;
  height:auto;
  overflow:hidden;
  min-height:800px; /* ie 7 marche et FF aussi. Pas testé IE6 */
}
 
#left-content{
  margin-left:11px;
  width:611px;
  margin-top:11px;
  float:left;
  background-color:transparent;
}
 
#page-left-content{
  width:611px;
  background-color:#cccccc;
  margin-top:11px;
  margin-bottom:11px;
}
 
#right-content{
  float:right;
  width:300px;
  margin-top:11px;
  margin-right:11px;
  background-color:transparent;
}
 
.block-right-content{
  width:100%;
  background-color:#cccccc;
  margin-bottom:11px;
}
 
#foot-content{
  width:100%;
  height:70px;
  background-color:white;
}
 
 
#vid-left-content{
  width:611px;
  height:395px;
  background-color:#cccccc; 
}
 
 
 
</style>
<!--[if lte IE 6]>
	<style type="text/css">
		#left-content, #fullsize-vid-left-content, #page-left-content{
			display:inline
		}
	</style>
 
<![endif]--></head>
<body>
 
<div id="content-parent">
 
  <div id="content-child">
 
    <div id="head-hight"></div>
 
    <div id="head-low"></div>
 
    <div id="page">
 
        <div id="left-content">
                  <div id="vid-left-content">
 
 
                  </div>
                  <div id="page-left-content">lol</div>
 
        </div>
 
        <div id="right-content">
 
          <div class="block-right-content">LOL</div>
          <div class="block-right-content">LOL</div>
        </div>
    </div>
    <div id="foot-content"></div>
 
  </div>
</div>
</body>
</html>