Fuzzed Text (with tooltip)

Small example of making text blurry.

by Andrew Holloway

HTML

<p>
This is an example of some <span class="ft">fuzzed text<span class="tooltip">fuzzed text</span></span> with content on both sides.
</p>

CSS

.ft {
  position: relative;
  color: transparent;
  text-shadow: 0 0 10px #000000aa;
}

.tooltip {
  display: block;
  position: absolute;
  border: 1px solid grey;
  min-width: 100px;
  text-shadow: none;
  color: black;
  text-align: center;
  padding: 5px;
    
  background-color: #acf;
  left: 50%;
  top: calc(50% + 20px);
  transform: translate(-50%);
}