Result Size: 300 x 150
x
 
<!DOCTYPE html>
<html>
<style>
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  /* Разместите всплывающую подсказку */
  position: absolute;
  z-index: 1;
  top: -5px;
  right: 105%;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
}
</style>
<body style="text-align:center;">
<h2>Всплывающая подсказка слева</h2>
<p>Наведите указатель мыши на текст ниже:</p>
<div class="tooltip">Наведите на меня <span class="tooltiptext">Текст всплывающей подсказки</span></div>
</body>
</html>