1 pièce(s) jointe(s)
Mon texte sort du div dans IE
Bonjour à tous,
J'ai un problème avec mon texte dans IE.
Il sort de ma balise div en largeur.
Voici le code html concerné :
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| <div class="nav">
<table width="180" class='none'>
<tr>
<td><font face='Calibri, Arial, Helvetica, sans-serif' color='#fff'><?php echo '<strong>Administration de ' . $_SESSION['logname'] . '</strong><br/>'; ?> </font></td>
</tr>
<tr>
<td><?php echo '<img src="/img/o15.png" width="11" height="8" /><a href="/Ajout_Produit.php">Ajouter un produit</a><br/>'; ?></td>
</tr>
<tr>
<td><?php echo '<img src="/img/o15.png" width="11" height="8" /><a href="/non_visible.php">Produits non visibles sur le site</a><br/>'; ?></td>
</tr>
<tr>
<td><?php echo '<img src="/img/o15.png" width="11" height="8" /><a href="/Membre_inscrit.php">Voir la liste des membres inscrits sur le site</a><br/>'; ?></td>
</tr>
<tr>
<td><?php echo '<img src="/img/o15.png" width="11" height="8" /><a href="/Modif_Livraison.php">Actualiser la prochaine date de livraison</a><br/>'; ?> </td>
</tr>
<tr>
<td><?php echo '<img src="/img/o15.png" width="11" height="8" /><a href="/Modif_Dynamique.php">Modifier les textes du site</a><br/>'; ?> </td>
</tr>
<tr>
<td><?php echo '<img src="/img/o15.png" width="11" height="8" /><a href="/nl_admin/index.php">Envoyer une Newsletter</a><br/>'; ?> </td> |
Et le css concerné :
Code:
1 2 3 4 5 6 7 8 9 10
| .nav {
background-image:url(/img/design1/arp.png);
background-repeat:no-repeat;
font-size:12px;
height:auto;
margin-top: 15px;
margin-left:10px;
border:1px solid #8a7265;
width:180px;
} |
Voir PJ pour plus d'explications !