<div class="test">Di chuột qua đây
  <span class="tooltiptext">Hello World!</span>
</div>
.test {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
  margin-top: 40px;
}

.test .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  
  /* Xác định vị trí của hộp chú giải */
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
}

.test:hover .tooltiptext {
  visibility: visible;
}
body{
  text-align:center;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.