Bonjour, je développe une "modal box" et j'ai donc besoin de créer une une div transparente qui prend tout l'écran.
Ca fonctionne très bien sur Chrome, Opera, Firefox, Safari etc mais IE8 la dic reste opaque....
Je ne trouve pas la solution.... Voici mon code :
Vous avez une solution ?
Merci !
Ca fonctionne très bien sur Chrome, Opera, Firefox, Safari etc mais IE8 la dic reste opaque....
Je ne trouve pas la solution.... Voici mon code :
#voile {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #000000;
background: rgba(0, 0, 0, 0.7);
filter: alpha(opacity=70);
-moz-opacity: 0.7;
-webkit-opacity: 0.7;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
opacity: 0.7;
display: none;
z-index: 100;
}
Vous avez une solution ?
Merci !