Perform Animation on CSS font-size property


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

Example

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <style>
         p {
            border: 2px solid black;
            width: 400px;
            height: 100px;
            animation: myanim 5s infinite;
         }
         @keyframes myanim {
            70% {
               font-size: 30px;
            }
         }
      </style>
   </head>
   <body>
      <p>This is demo text</p>
   </body>
</html>

Samual Sam
Samual Sam

Learning faster. Every day.

Updated on: 25-Jun-2020

668 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements