All TalkersCode Topics

Follow TalkersCode On Social Media

devloprr.com - A Social Media Network for developers Join Now ➔

CSS3 Text Effects

With CSS3 Text Effects you can add several new effects on text like text-shadow, wordwrap etc.


  • text-shadow
  • word-wrap


  • Text Shadow

    Text shadow is used to give shadow to the elements text


    Syntax

    text-shadow:vertical shadow horizontal shadow blur distance color;


    p
    {
    text-shadow:10px 20px 50px blue;
    }
    


    Word Wrap

    Word Wrap is used to prevent the long words expanding outside from the box and it fit the long words in given box.


    Syntax

    word-wrap:break-word;


    It has no value other than break-word.

    ❮ Prev