[HTML] Problème d'affichage
J'ai un petit soucis avec de l'affichage.
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
<table width="757" border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="4"><img src="images/formules/formules_haut.gif" width="757" height="31"></td>
</tr>
<tr>
<td width="11" rowspan="2" background="images/formules/formules_gauche.gif"> </td>
<td colspan="2"><p><font class="txt"> <b><u>Voici quelques uns de
nos clients : </u></b><br>
<br>
</font></p></td>
<td width="11" rowspan="2" background="images/formules/formules_droite.gif"> </td>
</tr>
<tr>
<td width="195"><font class="txt"> </font></td>
<td width="540">
<font class="txt">
<?
foreach($TAB_CHOIX as $REFERENCE) {
$TAB_AFFICH = explode("|",$REFERENCE);
if ($TAB_AFFICH[0]<>'' && $TAB_AFFICH[0]<>' '){
?>
<a href="<?=$TAB_AFFICH[1];?>" target="_blank">
<b><?=trim($TAB_AFFICH[0]);?></b>
<br>
<br>
<? if (trim($TAB_AFFICH[2]) <> '' && trim($TAB_AFFICH[2])<>' ') { ?>
<img src="http://<?=$TAB_AFFICH[2];?>" width="400" height="150" border="1">
<? } else { ?>
<img src="images/blank.gif" width="400" height="150" border="0">
<? } ?>
</a>
<br>
<br>
<?
}
}
?>
</font>
</td>
</tr>
<tr>
<td colspan="4"><img src="images/formules/formules_bas.gif" width="757" height="21"></td>
</tr>
</table> |
Quand je suis sous internet explorer, aucun problème l'affichage se passe correctement.
Mais sous FireFox, j'ai un _ qui s'affiche juste après mon image et je ne sais pas d'où il vient et ni comment m'en débarrasser.
Merci pour l'aide
PS: Mes connaissances en HTML/PHP/etc... se reduisent à modifier de l'existant et encore des choses simples.