<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>
#div_raton_globo {
position: relative;
display: inline-block;
background-color: #0FC;
left:100px;
top:100px
}
#div_raton_globo #div_globo {
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;
bottom: 100%;
left: 50%;
}
#div_raton_globo:hover #div_globo {
visibility: visible;
}
</style>
</head>
<body>
<div id="div_raton_globo">tengo un tooltip
<div id="div_globo" >Tooltip text</div>
</div>
</body>
</html>
____________________________________________________________________
tengo un tooltip
Tooltip text
cuando uno hace tooltip con divs son para un elemento en especifico