Bonjour,

J'ai un problème avec un style.
J'ai crée 3 styles en position absolute :
.desph
.desde
.desme

Ceux ci s'affiche correctement sous IE, mais ne s'affiche pas du tout sous FIREFOX et SAFARI, je ne trouve pas mon erreur.

Voila le 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
 * {
	color:				#000;
	border:				0;
	margin:				0;
	padding:			0;
	font-family:    	"Trebuchet MS", Verdana, Arial, sans-serif;
}
 
body {
	background: 		#000;
}
 
#container {
	width: 				950px;
	background-color:	#000;
	margin:				30px 0 0 30px;
	padding:			0 0 1px 0;
}
 
#header {
	height:				180px;
	background: 		url('../_img/header.png');
}
 
#menu {
	height:				50px;
	background-color:	#000;
}
 
h1 {
	font:				1em;
	font-weight:		bold;
	margin:				10px 5px 10px 5px;
	padding:			0 0 0 20px;
	background-color:	#000;
}
 
.element {
	background:			#000;
	margin:				10px;
}
 
p {
	margin: 			5px;
	color: 				#fff;
}
 
p.icoIndex {
	padding: 			20px 70px 30px 70px;
	background: 		#000;
}
 
a img {
	border:				5px solid #999999;
}
 
a img:hover {
	border:				5px solid #04aae1;
}
 
.desph {
	position: absolute;
	top: 420px;
	left: 125px;
	width: 238px;
	height: 40px;
	background: url('../_img/black-opa-50.png');
	color: #fff;
	padding: 0 0 0 2px;
	font-size: 12px;
}
 
.desde {
	position: absolute;
	top: 420px;
	left: 390px;
	width: 238px;
	height: 40px;
	background: url('../_img/black-opa-50.png');
	color: #fff;
	padding: 0 0 0 2px;
	font-size: 12px;
}
 
.desme {
	position: absolute;
	top: 420px;
	left: 655px;
	width: 238px;
	height: 40px;
	background: url('../_img/black-opa-50.png');
	color: #fff;
	padding: 0 0 0 2px;
	font-size: 12px;
}
Voila le HTML :

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
<body>
 
<div id="container">
	<div id="header">
	</div>
	<div id="menu">
	</div>
	<p class="icoIndex">
		<a href=""><img src="./_img/ico-photo.png"></a>
		<a href=""><img src="./_img/ico-dev.png"></a>
		<a href=""><img src="./_img/ico-me.png"></a>
	</p>
	<span class="desph">Art Works : I love photography and I would like to divide this passion with you.</span>
	<span class="desde">Dev Works : I work in computer science and I will present you some works.</span>
	<span class="desme">About me : Just some sentence to introduce myself.</span>
</div>
 
</body>
</html>
Si quelqu'un a une solution je serais bien preneur...