Perform Animation on CSS padding-top property


To implement animation on padding-top property with CSS, you can try to run the following code −

Example

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            width: 350px;
            height: 150px;
            outline: 3px solid maroon;
            animation: myanim 3s infinite;
         }
         @keyframes myanim {
            30% {
               padding-top: 60px;
            }
         }
      </style>
   </head>
   <body>
      <h1>CSS padding-top property</h1>
      <div> </div>
   </body>
</html>

Updated on: 25-Jun-2020

162 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements