Bonsoir j'ai petit problème !!!
J'ai un petit soucis mon code CSS ne passe pas sur I.E quelqu'un aurait-il une idée d'ou cela vient ?
J'essaye de faire le même effet que wanadoo.fr
Merci d'avance...
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 <html> <head> <title></title> </head> <body> <style> #galerie{ position:relative; width:300px; height:200px; } #galerie_text{ top:160px; position:absolute; width:250px; height:40px; filter:alpha(opacity=50); -moz-opacity:0.50; opacity: 0.50; background-color:#FFFFFF; } </style> <div id="galerie"> <img src="fille.jpg" width="300px" height="200px"> <div id="galerie_text">Galerie</div> </div> </body> </html>
Partager