El concepto de Hipervínculos (enlaces a otros sitios) aparece aquí con una breve descripción.
<a href="#" class="tooltip">Hipervínculos<span> (enlaces a otros sitios)</span></a>
a.tooltip {
position: relative;
}
a.tooltip span {
display: none;
padding: 2px;
}
a.tooltip:hover span {
display: block;
position: absolute;
top: 1.3em;
left: 2em;
border: 1px solid #000;
background-color: #ffe;
color: #000;
white-space: nowrap;
text-decoration: none;
}
* html a.tooltip {
font-size: 99%;
}
* html a.tooltip:hover {
font-size: 100%;
}