Perform Animation on CSS Letter Spacing Property



To implement animation on the letter-spacing property with CSS, you can try to run the following code

Example

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <style>
         p {
            letter-spacing: 3px;
            animation: mymove 3s infinite;
         }
         @keyframes mymove {
            70% {
               letter-spacing: 20px;
            }
         }
      </style>
   </head>
   <body>
      <p>I am flying!</p>
   </body>
</html>
Updated on: 2020-06-25T14:10:23+05:30

139 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements