bonjour, je voudrais dans ma page afficher 3 bloc (des div) cote a cote. J'y ai fait avec des position absolue mais ça ne marche pas sous IE

Voici mon css actuel (qui fonctionne sous FF et Safari)
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
 
#contenu_sommaire
{
	magin-top: 70px;
	position: relative;
	float: right;
	width: 705px;
}
 
#actu
{
	background: url(images/nouveau_projet.png) no-repeat;
	position: absolute;
	height: 100px;
	width: 100%;
	margin-top: 34px;
	margin-left: 17px;
}	
 
 
#actu_2
{
	background: url(images/coup_coeur.png) no-repeat;
	position: absolute;
	height: 100px;
	width: 100%;
	margin-top: 34px;
	margin-left: 225px;
 
}
 
#actu_3
{
	background: url(images/dev_durable.png) no-repeat;
	position: absolute;
	height:100px;
	width: 100%;
	margin-top: 31px;
	margin-left: 433px;
}