Getting the blurry text in the browser

Goud.Kv
Posted by Goud.Kv under CSS 3 category on | Points: 40 | Views : 1185
Following style helps to display a blurry text in the browser.

.blurText {
color: transparent;
text-shadow: 0 0 5px rgba(0,0,0,0.5);
}


Just give the above '.class' to your html element and you can see the text of that element as blur.

Comments or Responses

Login to post response