¿podeis hecharle un vistazo a este tooptip?
Código:
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>prueba toptip</title>
<style type=”text/css”>
a:hover{
background:#ffffff;
text-decoration:none;
}
a.tooltip span{
display:none;
padding: 2px 3px;
margin-left: 8px;
width: 130px;
}
a.tooltip:hover span{
display: inline;
position: absolute;
background: #ffffff;
border: 1px solid #cccccc;
color:#6c6c6c;
}
</style>
</head>
<body>
Este es un <a class=”tooltip” href=”#”>Ejemplo de tooltip<span>Muy sencillo y hecho en CSS</span></a>.
</body>
</html>
parece simple de hacer , pero no me funciona...