Documento sin título

Me Gusta

HTML

XXXXX

XXXXX

Ejemplo 1 tooltip

<!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>Documento sin título</title>
<style>
.tooltip {
    position: relative;
    display: inline-block;
background-color: #0FC
}


.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;


}

.tooltip:hover .tooltiptext {
    visibility: visible;
}
</style>
</head>

<body>


<div class="tooltip">tengo un tooltip
  <span class="tooltiptext">Tooltip text</span>
</div>


</body>
</html>

_________________________________________________________________________


Documento sin título
tengo un tooltip Tooltip text