Animate CSS padding-right property


To implement animation on padding-right 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 orange;
            animation: myanim 3s infinite;
         }
         @keyframes myanim {
            30% {
               padding-right: 60px;
            }
         }
      </style>
   </head>
   <body>
      <h1>CSS padding-right property</h1>
      <div> </div>
   </body>
</html>

Updated on: 25-Jun-2020

93 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements