When I do an hover on an image it disappears for 1 secondes and then appears back.
heres the source code
html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" type="text/css" href="main.css" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<a id="bouton" href="http://www.google.ca" title="Google"></a>
</body>
</html>
html
CSS
@charset "utf-8";
/* CSS Document */
#bouton
{
position:absolute;
width:89px;
height:65px;
background:url(images/accueilnormal.gif);
}
#bouton:hover
{
background:url(images/accueilhover.gif);
}
CSS
and hres the website if u want to check it what it does in real time
http://www.naldart.comze.com/
Thanks
|