Computer >> Máy Tính >  >> Lập trình >> CSS

Tạo hoạt ảnh thuộc tính đệm CSS

Để triển khai hoạt ảnh trên thuộc tính padding với CSS, bạn có thể thử chạy đoạn mã sau

Ví dụ

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