Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • Add shadow around the text

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 3
    • 0
    • 340
    Comment on it

    Hello Reader

    This blog will helps you to draw a shadow around the individual character same( like border ). We can use webkit stroke method but webkit disappears in other browsers!. It will set text color, stroke color and set 1px offset .

    h1 {
       -webkit-text-stroke-width: 1px;
       -webkit-text-stroke-color: black;
       color:white;
    }
    

    Simulation  

    We can use the text shadow property supported in all the browser. We will use Four shadows, each one set 1px offset with color, one each to the top right, top left, bottom left, and bottom right

    h1 {
      color: white;
      text-shadow:
       -1px -1px 0 #000,  
        1px -1px 0 #000,
        -1px 1px 0 #000,
         1px 1px 0 #000;
    }
    

    This stroke using all text shadows and it just pretty close to real stroke. The primary issue in this stroke that you can only use 1px offset.

     

    Combining

    Used both stroke and shadow and solve issue 1px offset can be greater effect. Set all-around text-shadow stroke, as well as a deeper text-shadow stroke.

    h1 {
       -webkit-text-stroke: 1px black;
       color: white;
       text-shadow:
           3px 3px 0 #000,
         -1px -1px 0 #000,  
          1px -1px 0 #000,
          -1px 1px 0 #000,
           1px 1px 0 #000;
    }
    

    Add shadow around the text

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: