Generate CSS-only tooltips.
.tip { position: relative; }
.tip:hover::after {
content: "I'm a tooltip";
position: absolute;
top: 100%;
bottom: 100%;
transform: translateX(-50%);
background: #111827;
color: #ffffff;
padding: 4px 8px;
border-radius: 4px;
font-size: 12px;
white-space: nowrap;
}