Making Text Blurry in CSS.

In this post, you'll see how to make any text blurry using CSS. its simple.















.blur {
   color: transparent;
   text-shadow: 0 0 5px rgba(0,0,0,0.5);
}
The CSS selector 'text-shadow' is compatible with more browsers. after making its color transparent, and having a shadow makes it appear as blurry.

No comments:

Post a Comment