UT

CSS Tooltip Generator

Create pure CSS tooltips with customizable styles.

Tooltip text
.tooltip {
  position: relative;
  display: inline-block;
  background-color: #111827;
  color: #ffffff;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 6px;
  white-space: nowrap;
}
.tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #111827 transparent transparent transparent;
}