Ver Mensaje Individual
  #1 (permalink)  
Antiguo 12/12/2011, 03:05
Avatar de sergi_multimedia
sergi_multimedia
 
Fecha de Ingreso: noviembre-2010
Mensajes: 213
Antigüedad: 14 años
Puntos: 4
Pregunta CSS3 Transitions

Hola de nuevo, quiero aplicar una transition en el menú de navegación, pero no se aplica como creo que se tendría que aplicar, el menú se vuelve loco cuando paso el cursor por encima, en el que se comporta mejor es en FireFox, pero en los otros es mucho peor.

Aquí tenéis la prueba:

http://s310876771.mialojamiento.es/

Código CSS:
Ver original
  1. nav ul li a {
  2.     float: left;
  3.     text-decoration: none;
  4.     width: 120px;
  5.     text-align: center;
  6.     color: #fafafa;
  7.     margin-left: 55px;
  8.     text-shadow: 0px 0px 3px #969696;
  9.     filter: dropshadow(color=#969696, offx=0, offy=0);
  10.     -webkit-transition: all 0.2s ease-in-out;
  11.     -moz-transition: all 0.2s ease-in-out;
  12.     -o-transition: all 0.2s ease-in-out;
  13.     transition: all 0.2s ease-in-out;  
  14. }

Alguna sugerencia para que funcione correctamente?

Un saludo