Sujet : Problème d'affichage dans Iexplorer
Bonsoir j'ai une colle pour les experts en HTML-CSS.
Il se trouve que l'affichage des TABULATIONS sur le template dans lequel je travaille présentement est annormal sur Internet Exploreur tandis que sur Firefox tout s'affiche correctement.
/*Le CODE HTML*/
<link href="text-tag.css" rel="stylesheet" type="text/css">
<link href="styles.css" rel="stylesheet" type="text/css">
<div id="header-tab">
  <div id="tab">
    <ul>
        <li><a href="" title="Accueil">Accueil</a></li>
        <li><a href="" title="Qui je suis?">Qui je suis?</a></li>
        <li><a href="" title="">Services</a></li>
    </ul>
  </div>
</div>
/*LE CODE CSS*/
div#header-tab{
margin-top:-20px;
float:right;
width:430px;
}
#tab {
float:left;
font-size:93%;
line-height:31px;
background:#DAE0D2 url("img/bg.png")repeat-x bottom;
}
#tab ul {
    margin:0;
    padding:0;
    list-style:none;
    }
  #tab li {
    float:left;
    background:url("img/left.png") no-repeat left top;
    margin:0;
    padding:0 0 0 9px;
    }
  #tab a, #tab strong, #tab span {
    display:block;
    background:url("img/right.png") no-repeat right top;
    padding:5px 15px 4px 6px;
    }
  /* Commented Backslash Hack
     hides rule from IE5-Mac \*/
  #tab a {float:none;}
  /* End IE5-Mac hack */
/*FIN DU CODE*/
Voici le lien du Template: http://binarysim.lescigales.org/Lime/
L'exemple de la Sliding Doors Technique, litérallement un copy paste du tutoriel ne fonctionne pas sous IE
Voici le lien de l'article: http://www.alistapart.com/articles/slidingdoors


