Sur une de mes pages g inséré un tableau avec une photo à l'intérieur.
j'ai fixé la largeur de la colonne et celle de la photo en pourcentage.
Sur firefox pas de pb alors sur IE, il ne prend pas compte de ces différentes largeurs et m'affiche la photo avec ça largeur originale.
Est-ce qq'un voit d'où vient le pb?
Merci par avance.
Modifié par Noman02 (09 Feb 2006 - 20:59)
j'ai fixé la largeur de la colonne et celle de la photo en pourcentage.
Sur firefox pas de pb alors sur IE, il ne prend pas compte de ces différentes largeurs et m'affiche la photo avec ça largeur originale.
Est-ce qq'un voit d'où vient le pb?
Merci par avance.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<style type="text/css">
<!--
html, body {
margin:0%;
padding:0%;
height: 100%;
width: 100%;
font-family: Comic Sans MS;
color: #000000;
}
#arriere {
position: absolute;
left: 0%;
top: 0%;
width : 100%;
height:100%;
}
#arriere table {
position: absolute;
top: 2%;
left: 2%;
width:96%;
height:96%;
}
a:link {
color: #000000;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #000000;
}
a:hover {
text-decoration: none;
color: #999999;
}
a:active {
text-decoration: none;
color: #000000;
}
body,td,th {
font-size: 110%;
}
-->
</style>
<title>Photos du tournoi du 11 novembre 2005</title>
<script type="text/javascript">
photo = 1
nbphoto = 20
function newSlide(direction) {
if (document.images) {
photo = photo + direction
if (photo < 1) { photo = nbphoto }
if (photo > nbphoto) { photo=1 }
document.slider.src = "images/tour1105/slide" + photo + ".jpg" }
}
</script>
<body>
<div id="arriere">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="10%"><center><a href="javascript:newSlide(-1)"><img alt="image précédente" src="images/precedent.jpg" width="90%"></a></center></td>
<td width="80%"><center><img alt="Photos du tournoi du 11 novembre 2005" src="images/tour1105/slide1.jpg" name=slider width="100%"></center></td>
<td width="10%"><center><a href="javascript:newSlide(1)"><img alt="image suivante" src="images/suivant.jpg" width="90%"></a></center></td>
</tr>
<tr>
<td colspan="3"><div align="center"><a href="tour1105.php">Retour</a></div></td>
</tr>
</table>
</div>
</body>
</html>
Modifié par Noman02 (09 Feb 2006 - 20:59)