Fuzzed Text

Small example of making text blurry.

by Andrew Holloway

HTML

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

CSS

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