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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta http-equiv="Content-Language" content="fr" />
<style type="text/css">
<!--
/* l'attribut align en HTML n'est plus valide en XHTML */
img{
vertical-align: middle;
}
a.infoPlaque {
/*position:relative;*/
text-decoration: none;
color : #000;
}
a:hover.infoPlaque {
text-decoration: none;
background: none;
/*position:relative;*/
}
a.infoPlaque span {display: none;}
a:hover.infoPlaque span {
display: inline;
position: absolute;
/*top:1.5em;
left:0.5em;*/
/*bottom: 60px;*/ /*cette propriété n'existe pas */
margin-bottom: 60px;
/*left: 0px;*/ /*sans intéret selon moi */
background: #5A5D5A;
/*border:1px solid #000;*/
/*width:auto;*/ /*inutile */
text-align:center;
font-size: 10px;
}
//-->
</style>
</head>
<body>
<table border="1">
<tr>
<td>
bla bla bla bla
<a href="javascript:choixtaille(2);" class="infoPlaque">
<img src="mes images/i1.gif" id="taille2" style="border: none; width: 60px" alt=""/>
<span>
<img src="mes images/i1.gif" id="zoomtaille2" style="border: none;" alt=""/>
</span>
</a>
bla bla bla bla
</td>
<td>
<a href="javascript:choixtaille(2);" class="infoPlaque">
<img src="mes images/i2.gif" id="taille3" style="border: none; width: 60px" alt="" />
<span>
<img src="mes images/i2.gif" id="zoomtaille3" style="border: none;" alt=""/>
</span>
</a>
</td>
</tr>
</table>
</body>
</html> |