Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

CSS padding-bottom 속성 애니메이션

<시간/>

CSS를 사용하여 padding-bottom 속성에 애니메이션을 구현하려면 다음 코드를 실행할 수 있습니다.

예시

<!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>