
/* Tooltip para ejemplo */

/* Tooltip contenedor */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /*  Si quieres puntos debajo del texto flotante */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: green;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
 
  /* Position the tooltip text - ver otros ejemplos  */
  position: absolute;
  z-index: 1;
  

}

/* Mostrar el tooltip text cuendo el mouse pasa sobre el contenedor tooltip */
.tooltip:hover .tooltiptext {
  visibility: visible;
}