Ver Mensaje Individual
  #1 (permalink)  
Antiguo 28/05/2015, 02:31
Avatar de baldaweb
baldaweb
 
Fecha de Ingreso: septiembre-2010
Ubicación: Barco pirata
Mensajes: 244
Antigüedad: 13 años, 7 meses
Puntos: 20
hover sobre imagen y texto

Al pasar el raton sobre el icono me hace el hover sobre el icono y el texto, pero si pongo el raton sobre el texto, solo me hace el hover sobre el texto pero el icono no cambia.

Código HTML:
Ver original
  1. <div class="pie">
  2.    <div class="pull-left plt-pie"><a href="#"><span id="seccion-A">&nbsp;</span> <span>Seccion A</span></a>
  3.    </div>
  4. </div>

Código CSS:
Ver original
  1. .pie {
  2.   background-color: #1D1D1B;
  3.   height: 28px;
  4.   padding-top: 4px;
  5.   text-align: left;
  6.   padding-left: 40px;
  7. }
  8.  
  9. .plt-pie {
  10.     display: inline;
  11.     font-family: "PT Sans Bold";
  12.     font-size: 14px;
  13. }
  14.  
  15. .plt-pie a {
  16.     color:#a5a5a4;
  17.     margin-right: 10px;
  18.     text-decoration:none;
  19.     transition: all 0.3s ease;  
  20. }
  21. .plt-pie a:hover {
  22.     color: #ffffff;
  23.     text-decoration: none;
  24. }
  25. #seccion-A, #seccion-B, #seccion-C {
  26.     background-image: url('images/iconos-marcas.png');
  27.     background-repeat: no-repeat;  
  28. }
  29.  
  30. #seccion-A {background-position: 0px -29px; padding-left: 16px;}
  31. #seccion-A:hover {background-position: 0px -2px; padding-left: 16px;}

Saludos.

Última edición por baldaweb; 28/05/2015 a las 03:00