Skip to main content
Commercial Photography

Enjoy With Blurry Text CSS


Enjoy-With-Blurry-Text-CSS

Make stylish your blogs / web pages with making your text Blurryusing 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

New Fifty Shades Darker poster drops

New Fifty Shades Darker poster drops The brand new poster for Fifty Shades Darker , starring Jamie Dornan and Dakota Johnson has just dropped. It comes ahead of the new New Fifty Shades Darker trailer release tomorrow.

Commets, Varialbles & Special Keywords

Comments Javascript supports two types of comments. Double-slashes (//) tell javascript to ignore everything to the end of the line. You will see them used most often to describe what is happening on a particular line. var x=5; // Everything from the // to end of line is ignored(*) var thingamajig=123.45; // 2 times the price of a whatsit. "Blockquotes" begin a comment block with a slash-asterisk (/*) and Javascript will ignore everything from the start of the comment block until it encounters an asterisk-slash (*/). Blockquotes are useful for temporally disabling large areas of code, or describing the purpose of a function, or detailing the purpose and providing credits for the script itself.  function whirlymajig(jabberwocky) {    /* Here we take the jabberwocky and insert it in the gire-gimble, taking great care to observe the ipsum lorum!   For bor-rath-outgrabe! We really should patent this! */    return (jabberwocky*2); } You should note that...

The Magnificent Seven: Film Review

The Magnificent Seven: Film Review Cast: Denzel Washington, Chris Pratt, Ethan Hawke, Vincent D'Onofrio, Manuel Garcia-Rulfo, Martin Sensmeier, Byung-hun Lee, Peter Sarsgaard Director: Antoine Fuqua Rote and without a hint of much of his own style, The Magnificent Seven somehow manages to feel like a weaker carbon copy than a redo of the 1960s classic. This time around, Denzel Washington leads the pack as Sam Chisholm, a newly sworn warrant officer. Riding into town with nary a comment but with every head turning as a black man heads down their street, Chisholm is asked by widowed Emma Cullen (a largely underused but pleasingly effective Haley Bennett) to avenge her husband's death and free their mining town from the tyrannical grip of Bartholomew Bogue (Sarsgaard). Gathering up a motley crew of multi-racial misfits (one of the more revisionist edges that Fuqua gifts the reboot), Chisholm and his man saddle up for a fight. The Magnificent Seven is nothing in comparison to the...