Ver Mensaje Individual
  #8 (permalink)  
Antiguo 20/01/2007, 12:02
Avatar de Mikmoro
Mikmoro
Colaborador
 
Fecha de Ingreso: octubre-2006
Ubicación: K-pax
Mensajes: 7.228
Antigüedad: 17 años, 6 meses
Puntos: 280
Re: desplazar imagen

Así funciona en IE 6 y Firefox:

Código:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title>Prueba</title>
  <style type="text/css">
#cont { position: relative;
}
a:hover { position: absolute;
top: -2px;
}
  </style>
</head>
<body>
<div id="cont">
<a href="#"><img src="imagen.gif" /></a></div>
</body>
</html>
Mikel.