30 CSS Text Hover Effects28 / 30

CSS onlyMIT licensed

Tooltip Text Reveal

Definition tooltips on the jargon in a SaaS feature list — pure CSS, but built like product UI, not a CodePen: the bubble is ::after reading attr(data-tip) with an ::before arrow; it fades/lifts in on a 350ms INTENT delay (so drive-by cursors never trigger a flicker storm) yet hides instantly on exit and shows instantly on keyboard focus — three different timings, all from transition-delay placement. Terms are real <button>s with aria-describedby pointing at screen-reader text, because a tooltip a screen reader can't hear is a decoration, not a tooltip.

Published

Live Demo
Try it

The code

<section class="cth-28" aria-label="CSS tooltip text reveal demo">
  <div class="cth-28__stage">
    <div class="cth-28__card">
      <p class="cth-28__eyebrow">Ledgerline &mdash; what's in the Pro tier</p>
      <h2 class="cth-28__title">Every export, explained on hover</h2>
      <ul class="cth-28__list">
        <li>Nightly
          <button class="cth-28__term" type="button" data-tip="Data copied straight from disk to network — no serialization step, no CPU spike at 2am." aria-describedby="cth28-d1">zero-copy exports<i class="cth-28__sr" id="cth28-d1">Data copied straight from disk to network — no serialization step, no CPU spike at 2am.</i></button>
          to your warehouse.</li>
        <li>Ledgers stay consistent under
          <button class="cth-28__term" type="button" data-tip="Multiple writers land in one agreed order — nobody's Tuesday overwrites somebody's Monday." aria-describedby="cth28-d2">multi-writer ordering<i class="cth-28__sr" id="cth28-d2">Multiple writers land in one agreed order — nobody's Tuesday overwrites somebody's Monday.</i></button>
          at any scale.</li>
        <li>Vaults are
          <button class="cth-28__term" type="button" data-tip="Your data never leaves the region you pinned it to. Auditors love this one weird trick." aria-describedby="cth28-d3">region-pinned<i class="cth-28__sr" id="cth28-d3">Your data never leaves the region you pinned it to. Auditors love this one weird trick.</i></button>
          by default.</li>
      </ul>
      <p class="cth-28__hint">Hover a dotted term (350ms intent delay) or <kbd>Tab</kbd> to it (instant). Bubble = <code>::after</code> + <code>attr(data-tip)</code>; screen readers get <code>aria-describedby</code>.</p>
    </div>
  </div>
</section>
.cth-28,
.cth-28 *,
.cth-28 *::before,
.cth-28 *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.cth-28 {
  --bg: oklch(0.97 0.005 230);
  --card: oklch(1 0 0);
  --ink: oklch(0.25 0.02 250);
  --mut: oklch(0.52 0.02 250);
  --acc: oklch(0.55 0.15 240);
  --line: oklch(0.9 0.008 240);
  --tip-bg: oklch(0.24 0.02 255);
  font-family: 'Segoe UI',system-ui,sans-serif;
  color: var(--ink);
}

.cth-28__stage {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  background: var(--bg);
  padding: clamp(20px,4vw,56px);
  container: cth28/inline-size;
}

.cth-28__card {
  width: min(100%,620px);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(24px,4.6cqi,40px);
  box-shadow: 0 20px 60px oklch(0.4 0.05 245/.1);
}

.cth-28__eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--acc);
}

.cth-28__title {
  font-size: clamp(22px,3.8cqi,30px);
  font-weight: 850;
  letter-spacing: -.02em;
  margin-top: 8px;
}

.cth-28__list {
  list-style: none;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
}

.cth-28__list li {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--mut);
  padding: 14px 2px;
  border-bottom: 1px solid var(--line);
}

.cth-28__term {
  position: relative;
  display: inline;
  border: 0;
  background: none;
  cursor: help;
  font: inherit;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 2px dotted var(--acc);
  padding-bottom: 1px;
  transition: color .2s,border-color .2s;
}

.cth-28__term:hover,
.cth-28__term:focus-visible {
  color: var(--acc);
}

.cth-28__term:focus-visible {
  outline: 2px solid var(--acc);
  outline-offset: 3px;
  border-radius: 2px;
}

.cth-28__term::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 11px);
  left: 50%;
  z-index: 5;
  width: max-content;
  max-width: 26ch;
  padding: 10px 13px;
  border-radius: 10px;
  background: var(--tip-bg);
  color: oklch(0.96 0.005 240);
  font-size: 12.5px;
  font-weight: 550;
  line-height: 1.55;
  text-align: left;
  box-shadow: 0 12px 30px oklch(0.2 0.03 255/.35);
  translate: -50% 6px;
  opacity: 0;
  scale: .94;
  pointer-events: none;
  transition: opacity .22s ease,translate .22s ease,scale .22s ease;
  transition-delay: 0s;
}

.cth-28__term::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 5px);
  left: 50%;
  z-index: 5;
  border: 6px solid transparent;
  border-top-color: var(--tip-bg);
  translate: -50% 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease,translate .22s ease;
  transition-delay: 0s;
}

.cth-28__term:hover::after,
.cth-28__term:hover::before {
  opacity: 1;
  translate: -50% 0;
  scale: 1;
  pointer-events: auto;
  transition-delay: .35s;
}

.cth-28__term:focus-visible::after,
.cth-28__term:focus-visible::before {
  opacity: 1;
  translate: -50% 0;
  scale: 1;
  transition-delay: 0s;
}

.cth-28__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.cth-28__hint {
  margin-top: 16px;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--mut);
}

.cth-28__hint code {
  font-family: ui-monospace,Menlo,Consolas,monospace;
  font-size: .9em;
  background: oklch(0.94 0.006 240);
  padding: 1px 6px;
  border-radius: 4px;
}

.cth-28__hint kbd {
  font-family: ui-monospace,Menlo,monospace;
  font-size: 11px;
  border: 1px solid var(--line);
  border-bottom-width: 2px;
  border-radius: 5px;
  padding: 2px 6px;
  background: oklch(0.98 0.003 240);
}

@media (prefers-reduced-motion: reduce) {
  .cth-28 *,
    .cth-28 *::before,
    .cth-28 *::after {
    transition-duration: .01ms !important;
  }
}
Paste this into ChatGPT, Claude, Cursor, or any coding assistant. The block below is pre-framed with everything the AI needs to integrate this demo into your project — markup, styles, scoping notes, and the source URL. Hit Copy and paste straight into your chat.
Here's a working CSS Text Hover Effect from CodeFronts. Use it as-is or adapt to your framework. All classes are scoped under a unique prefix so the code won't collide with your existing styles. MIT licensed.
Demo: Tooltip Text Reveal
Source: https://codefronts.com/motion/css-text-hover-effects/tooltip-text-reveal/

Definition tooltips on the jargon in a SaaS feature list — pure CSS, but built like product UI, not a CodePen: the bubble is ::after reading attr(data-tip) with an ::before arrow; it fades/lifts in on a 350ms INTENT delay (so drive-by cursors never trigger a flicker storm) yet hides instantly on exit and shows instantly on keyboard focus — three different timings, all from transition-delay placement. Terms are real <button>s with aria-describedby pointing at screen-reader text, because a tooltip a screen reader can't hear is a decoration, not a tooltip.
## HTML
```html
<section class="cth-28" aria-label="CSS tooltip text reveal demo">
  <div class="cth-28__stage">
    <div class="cth-28__card">
      <p class="cth-28__eyebrow">Ledgerline &mdash; what's in the Pro tier</p>
      <h2 class="cth-28__title">Every export, explained on hover</h2>
      <ul class="cth-28__list">
        <li>Nightly
          <button class="cth-28__term" type="button" data-tip="Data copied straight from disk to network — no serialization step, no CPU spike at 2am." aria-describedby="cth28-d1">zero-copy exports<i class="cth-28__sr" id="cth28-d1">Data copied straight from disk to network — no serialization step, no CPU spike at 2am.</i></button>
          to your warehouse.</li>
        <li>Ledgers stay consistent under
          <button class="cth-28__term" type="button" data-tip="Multiple writers land in one agreed order — nobody's Tuesday overwrites somebody's Monday." aria-describedby="cth28-d2">multi-writer ordering<i class="cth-28__sr" id="cth28-d2">Multiple writers land in one agreed order — nobody's Tuesday overwrites somebody's Monday.</i></button>
          at any scale.</li>
        <li>Vaults are
          <button class="cth-28__term" type="button" data-tip="Your data never leaves the region you pinned it to. Auditors love this one weird trick." aria-describedby="cth28-d3">region-pinned<i class="cth-28__sr" id="cth28-d3">Your data never leaves the region you pinned it to. Auditors love this one weird trick.</i></button>
          by default.</li>
      </ul>
      <p class="cth-28__hint">Hover a dotted term (350ms intent delay) or <kbd>Tab</kbd> to it (instant). Bubble = <code>::after</code> + <code>attr(data-tip)</code>; screen readers get <code>aria-describedby</code>.</p>
    </div>
  </div>
</section>
```
## CSS
```css
.cth-28,
.cth-28 *,
.cth-28 *::before,
.cth-28 *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.cth-28 {
  --bg: oklch(0.97 0.005 230);
  --card: oklch(1 0 0);
  --ink: oklch(0.25 0.02 250);
  --mut: oklch(0.52 0.02 250);
  --acc: oklch(0.55 0.15 240);
  --line: oklch(0.9 0.008 240);
  --tip-bg: oklch(0.24 0.02 255);
  font-family: 'Segoe UI',system-ui,sans-serif;
  color: var(--ink);
}

.cth-28__stage {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  background: var(--bg);
  padding: clamp(20px,4vw,56px);
  container: cth28/inline-size;
}

.cth-28__card {
  width: min(100%,620px);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(24px,4.6cqi,40px);
  box-shadow: 0 20px 60px oklch(0.4 0.05 245/.1);
}

.cth-28__eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--acc);
}

.cth-28__title {
  font-size: clamp(22px,3.8cqi,30px);
  font-weight: 850;
  letter-spacing: -.02em;
  margin-top: 8px;
}

.cth-28__list {
  list-style: none;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
}

.cth-28__list li {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--mut);
  padding: 14px 2px;
  border-bottom: 1px solid var(--line);
}

.cth-28__term {
  position: relative;
  display: inline;
  border: 0;
  background: none;
  cursor: help;
  font: inherit;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 2px dotted var(--acc);
  padding-bottom: 1px;
  transition: color .2s,border-color .2s;
}

.cth-28__term:hover,
.cth-28__term:focus-visible {
  color: var(--acc);
}

.cth-28__term:focus-visible {
  outline: 2px solid var(--acc);
  outline-offset: 3px;
  border-radius: 2px;
}

.cth-28__term::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 11px);
  left: 50%;
  z-index: 5;
  width: max-content;
  max-width: 26ch;
  padding: 10px 13px;
  border-radius: 10px;
  background: var(--tip-bg);
  color: oklch(0.96 0.005 240);
  font-size: 12.5px;
  font-weight: 550;
  line-height: 1.55;
  text-align: left;
  box-shadow: 0 12px 30px oklch(0.2 0.03 255/.35);
  translate: -50% 6px;
  opacity: 0;
  scale: .94;
  pointer-events: none;
  transition: opacity .22s ease,translate .22s ease,scale .22s ease;
  transition-delay: 0s;
}

.cth-28__term::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 5px);
  left: 50%;
  z-index: 5;
  border: 6px solid transparent;
  border-top-color: var(--tip-bg);
  translate: -50% 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease,translate .22s ease;
  transition-delay: 0s;
}

.cth-28__term:hover::after,
.cth-28__term:hover::before {
  opacity: 1;
  translate: -50% 0;
  scale: 1;
  pointer-events: auto;
  transition-delay: .35s;
}

.cth-28__term:focus-visible::after,
.cth-28__term:focus-visible::before {
  opacity: 1;
  translate: -50% 0;
  scale: 1;
  transition-delay: 0s;
}

.cth-28__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.cth-28__hint {
  margin-top: 16px;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--mut);
}

.cth-28__hint code {
  font-family: ui-monospace,Menlo,Consolas,monospace;
  font-size: .9em;
  background: oklch(0.94 0.006 240);
  padding: 1px 6px;
  border-radius: 4px;
}

.cth-28__hint kbd {
  font-family: ui-monospace,Menlo,monospace;
  font-size: 11px;
  border: 1px solid var(--line);
  border-bottom-width: 2px;
  border-radius: 5px;
  padding: 2px 6px;
  background: oklch(0.98 0.003 240);
}

@media (prefers-reduced-motion: reduce) {
  .cth-28 *,
    .cth-28 *::before,
    .cth-28 *::after {
    transition-duration: .01ms !important;
  }
}
```

How this works

The bubble and its arrow are the term's own pseudo-elements — zero extra DOM per tooltip:

.term{ position:relative; }
.term::after{ content:attr(data-tip);
  position:absolute; bottom:calc(100% + 10px); left:50%;
  width:max-content; max-width:24ch;
  translate:-50% 6px; opacity:0; scale:.94;
  transition:opacity .22s ease, translate .22s ease,
             scale .22s ease;
  transition-delay:0s;               /* hide: instant   */ }
.term:hover::after{ opacity:1; translate:-50% 0; scale:1;
  transition-delay:.35s;             /* show: intent    */ }
.term:focus-visible::after{ opacity:1; translate:-50% 0;
  scale:1; transition-delay:0s;      /* keyboard: now   */ }

The timing asymmetry is the entire feel and it's all transition-delay placement: the delay declared INSIDE :hover applies when entering hover (the intent gate — 350ms of 'do you mean it?'), the 0s in the base applies when leaving (dismissal must be immediate), and :focus-visible overrides to 0s because a keyboard user already declared intent by tabbing there. Same three rules, three timings, no JS debounce.

Accessibility is the half everyone skips: the visual bubble is CSS-generated, which some screen readers ignore — so each term is a real <button> whose aria-describedby references an sr-only span holding the same text. Focus shows the bubble visually; the description is announced natively. And width:max-content + max-width:24ch gives short tips a snug pill and long tips a readable paragraph without ever touching the layout around them (the bubble is absolutely positioned above — it overlaps, never pushes).

Make it yours

  • Placement kit: bottom tooltips = swap bottom:calc(100%+10px) for top:calc(100%+10px) and flip the arrow's border trick; side placements move the axis to left/right with translate -50% on Y.
  • Intent delay: 350ms suits dense prose (this list); 150ms suits toolbars where terms are sparse; 700ms is documentation-hover territory. It's one number.
  • The arrow is a 6px border triangle on ::before — recolor both bubble and arrow via the --tip-bg token; add a 1px border with a second, 1px-larger triangle underneath if your brand needs outlined tips.
  • 2026 upgrade path: CSS Anchor Positioning (anchor-name/position-area) replaces the manual bottom/left math and adds automatic flipping when the tip would clip the viewport — the attr() + delay grammar here transfers unchanged.

Gotchas — read before shipping

  • Tooltips clip against overflow:hidden ancestors — a bubble inside a clipping card gets guillotined. Either give the card headroom or move to anchor positioning/popover for top-layer rendering.
  • content:attr() is plain text only: no bold, no line breaks. Need markup in the tip? You need a real child element (or the Popover API), not attr().
  • Never put interactive content in a hover tooltip — it vanishes when the pointer travels toward it (the diagonal-of-death). Links belong in click-triggered popovers.
  • WCAG 1.4.13: tooltips must be dismissible (Esc), hoverable (pointer can cross onto the bubble), persistent (no auto-timeout). This pattern satisfies hover/persist; wire Esc in one line of JS if your review requires it — noted in the demo comment.

Browser support

ChromeSafariFirefoxEdge
111+16.4+113+111+

attr() bubbles + transition-delay choreography run in any 2015+ engine; floor reflects oklch() tokens. Anchor Positioning (mentioned as upgrade) is Chrome 125+/Safari 26 and not required here.

Techniques used in this demo

Search CodeFronts

Loading…