Salut à tous,
je voudrais que les cadres des images s'inversent au passage de la souris.
IE le fait, mais pas FF...damn it!!! Where is the ball (ou est la c...?)
Si vous avez la solution, merci d'avance!!
La page est ici:
http://www.kameleonsax.com/spectacle.html
La CSS:
Le HTML:
Modifié par bouquins (06 May 2005 - 22:44)
je voudrais que les cadres des images s'inversent au passage de la souris.
IE le fait, mais pas FF...damn it!!! Where is the ball (ou est la c...?)
Si vous avez la solution, merci d'avance!!
La page est ici:
http://www.kameleonsax.com/spectacle.html
La CSS:
*{margin: 0;padding: 0;}
body {
background: #000;
}
#conteneur, #pied, #centre {width: 600px;
margin-left: auto;
margin-right:auto;
}
#conteneur {height: 700px;
margin-top: 50px;
border: green 1px solid;
}
#pied {
font-size: 80%;
text-align: center;
margin: 0.5em auto;
padding: 0.5em 0;
font-family :"Trebuchet MS", Verdana, Arial, Helvetica, Courier, sans-serif;
color: #ff8c00;
}
#centre {
padding-top: 15px;
text-align: center;
display: block;
border: 1px red solid;
}
img {
border: 1px solid ;
border-color: #444 #aaa #aaa #444;
margin: 5px;
padding: 5px;
}
a:link{
border-color: #444 #aaa #aaa #444;
border: 1px solid;
}
a:visited{
border: 1px solid;
border-color: blue;
}
a:hover{
border: 1px solid;
border-color: #aaa #444 #444 #aaa;
}
a:active{
border: 1px solid;
border-color: #aaa #444 #444 #aaa;
}
Le HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Kameleon Sax</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" type="text/css"
href="general.css" />
</head>
<body>
<div id="conteneur">
<div id="centre">
<a href="v1.html"><img src="images/IMG_1311.jpg" width="100" height="67" alt="Le Bertic" /></a>
<a href="v2.html"><img src="images/IMG_1312.jpg" width="100" height="67" alt="Le Bertic" /></a>
<a href="v3.html"><img src="images/IMG_1313.jpg" width="100" height="67" alt="Le Bertic" /></a>
<a href="v4.html"><img src="images/IMG_1316.jpg" width="100" height="67" alt="Le Bertic" /></a>
<a href="v5.html"><img src="images/IMG_1318.jpg" width="100" height="67" alt="Le Bertic" /></a>
<a href="v6.html"><img src="images/IMG_1319.jpg" width="100" height="67" alt="Le Bertic" /></a>
<a href="v7.html"><img src="images/IMG_1322.jpg" width="100" height="67" alt="Le Bertic" /></a>
<a href="v8.html"><img src="images/IMG_1323.jpg" width="100" height="67" alt="Le Bertic" /></a>
<a href="v9.html"><img src="images/IMG_1324.jpg" width="100" height="67" alt="Le Bertic" /></a>
<a href="v10.html"><img src="images/IMG_1327.jpg" width="100" height="67" alt="Le Bertic" /></a>
<a href="v11.html"><img src="images/IMG_1328.jpg" width="100" height="67" alt="Le Bertic" /></a>
<a href="v12.html"><img src="images/IMG_1329.jpg" width="100" height="67" alt="Le Bertic" /></a>
<a href="v13.html"><img src="images/IMG_1330.jpg" width="100" height="67" alt="Le Bertic" /></a>
<a href="v14.html"><img src="images/IMG_1331.jpg" width="100" height="67" alt="Le Bertic" /></a>
<a href="v15.html"><img src="images/IMG_1341.jpg" width="100" height="67" alt="Le Bertic" /></a>
<a href="v16.html"><img src="images/IMG_1343.jpg" width="100" height="67" alt="Le Bertic" /></a>
<a href="v17.html"><img src="images/IMG_1347.jpg" width="100" height="67" alt="Le Bertic" /></a>
<a href="v18.html"><img src="images/IMG_1348.jpg" width="100" height="67" alt="Le Bertic" /></a>
<a href="v19.html"><img src="images/IMG_1349.jpg" width="100" height="67" alt="Le Bertic" /></a>
<a href="v20.html"><img src="images/IMG_1357.jpg" width="100" height="67" alt="Le Bertic" /></a>
<a href="v21.html"><img src="images/IMG_1358.jpg" width="100" height="67" alt="Le Bertic" /></a>
<a href="v22.html"><img src="images/IMG_1362.jpg" width="100" height="67" alt="Le Bertic" /></a>
</div>
</div>
<div id="pied">
Copyright (c) Kameleon Sax 2005.
</div>
</body>
</html>
Modifié par bouquins (06 May 2005 - 22:44)