JSFiddle - React, Tailwind, and code Playground

by agus makmun

HTML

dan dan dan <a href='#' title='Message' class='tooltip'>Ini Tooltip</a>

CSS

.tooltip{
  display: inline;
  position: relative;
}
.tooltip:hover:after{
  background: #333;
  background: rgba(0,0,0,.8);
  border-radius: 5px;
  top: 26px;
  color: #fff;
  content: attr(title);
  right: 20%;
  padding: 2px 10px;
  position: absolute;
  z-index: 98;
  width: 80px;
  opacity:0.9;
  font-family: "Lucida Sans Unicode","Lucida Grande",Arial,sans-serif;
  font-size: 13px;
}
.tooltip:hover:before{
  border: solid;
  border-color: #333 transparent;
  border-width: 6px 6px 0 6px;
  top: 20px;
  content: “”;
  right: 50%;
  position: absolute;
  z-index: 99;
}