14/05/2014, 18:29
|
| | | Fecha de Ingreso: octubre-2013 Ubicación: Argentina
Mensajes: 51
Antigüedad: 11 años, 1 mes Puntos: 0 | |
Respuesta: Cambiar diseño de "title" Cita:
Iniciado por pzin Con CSS podrías utilizar un pseudo-elemento y la función attr() para tomar el valor de title . Algo así:
Código CSS:
Ver originala[title]:hover { position: relative; } a[title]:hover:after { position: absolute; left: 50%; top: 100%; padding: 4px; background: grey; white-space: nowrap; z-index: 99; transform: translateX(-50%); content: attr(title); }
Por ejemplo:
Gracias por la ayuda ! |