Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> CSS

คุณสมบัติ CSS padding-bottom เคลื่อนไหว


ในการใช้งานแอนิเมชั่นบนคุณสมบัติ padding-bottom ด้วย CSS คุณสามารถลองเรียกใช้โค้ดต่อไปนี้:

ตัวอย่าง

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