Css face à ie bug

Fermé
Merci d'avance - Modifié par Merci d'avance le 17/05/2012 à 15:02
 Profil bloqué - 27 mars 2013 à 15:37
Bonjour,
Explications

j'ai un code css "footer" qui doit normalement placer l'élément "inscris-toi (et inscris-toi:hover)"
voilà que sur opéra et chrome le code fonctionne parfaitement
voir aussi firefox mais sur IE il à

3 bugs
:
le positionement ne fonctionne pas enfin /!\ Très important /!\ le css est calculer bizarrement tel que l'image se retrouve percher en haut de la page /!\Important /!\ le border radius ne fonctionne pas /!\Important /!\ Le hover de inscris-toi ne fonctionnes pas.

Les div's concerner

#inscris-toi
{
width:720px;
height:114px;

background-image: url('./images/inscris.png');
}

#inscris-toi:hover
{
background-image: url('./images/inscris_hover.png');
}

Et footer le plus important
#footer{
margin-left: 5px;
margin-right: 50px;
position:absolute;
top: 400px;
text-align:center;
font-family:Verdana;
font-size:11px;
color:#8a8a8a;
}

code html maintenant :
<div id="footer"><a href="./register.php"><center><div id="inscris-toi"></div></div></a>

A voir également:

1 réponse

Profil bloqué
27 mars 2013 à 15:37
Salut,

J'ai du mal à voir ton rendu (si tu avais un lien ce serait mieux), mais tu peux déjà mettre ça:

#inscris-toi
{
width:720px;
height:114px;
background-image: url('./images/inscris.png');
text-align:center;
}

et supprimer ce <center> tout bizarre...
0