J'ai un problème en CSS, j'ai un texte, en face duquel est affiché une image, qui a pour propriété float: right;
Sous Firefox, aucun soucis, l'image s'affiche en face du texte : http://screensnapr.com/u/k42xnz.png
Mais sous IE, l'image s'affiche bien en face du texte, mais une ligne en dessous : http://screensnapr.com/u/u4og43.png
Mon CSS :
#topcol{
width: 100%;
height: auto;
background: #FFFFFF;
text-align: left;
}
#topcol img{
float: right;
}
Et le HTML :
<div id="topcol"> Texte <a href="#"> <img src="design/img/mailbox.png" alt="MP" title="Messagerie privée"> </a> </div>
Merci d'avance pour votre aide :)
