Enjoy With Blurry Text CSS


Enjoy-With-Blurry-Text-CSS

Make stylish your blogs / web pages with making your text Blurry using simple pretty code in CSS. We can do it by just making the text color  transparent and adding some text shadow. Here’s the code for the same:

How to use this blurry text in your blog?
  • Login to your blogger dashbord
  • Click on Template
  • Then click to Edit HTML button
  • In your HTML codes press Ctrl + F to find the tag ]]</b:skin>
  • Now just copy the below code and paste it above the tag ]]</b:skin>
  • Then using simply below HTML code in your post to make your text blurry.

CSS Code for Blurry Text

.blurry
       {color:#000000;  /* Old browsers dont go transparent. */
        font-size:50px;
        font-family:arial;
        text-shadow:   0 0 1px #000000,   /* Many shadows blur out the area around the text */
                               3px 0 3px #000000,
                               0 3px 3px #000000,
                               -3px 0 3px #000000,
                               0 -3px 3px #000000;}


HTML Code for Blurry Text

<span class="blurry">
Entertainment Plateform</span>

DEMO BLURRY 
 
Entertainment Plateform


Another more simple codes for Blurry

CSS Code Blur Text


.blur{
 color: transparent;
 text-shadow: 0 0 2px #006400;
}


HTML Code Blur Text


<span class="blur">
Entertainment Plateform</span>

DEMO BLUR
Sample Text blur!


For using the blur text, follow the same instructions which are using in blurry

Comments

Popular posts from this blog

How to make Stylish and Animated Tabbed forms | with source code (VB.Net & C#)

How to Connect Android to Multiple WiFi Hotspots