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

CSS 텍스트 들여쓰기 속성 애니메이션


CSS를 사용하여 텍스트 들여쓰기 속성에 애니메이션을 구현하려면 다음 코드를 실행해 보십시오. -

예시

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            background-color: orange;
            border: 2px solid blue;
            animation: myanim 3s infinite;
         }
         @keyframes myanim {
            30% {
               text-indent: 120px;
            }
         }
      </style>
   </head>
   <body>
      <h1>CSS text-indent property</h1>
      <div>
         This is demo text. This is demo text.
         This is demo text.This is demo text.
         This is demo text. This is demo text.
         This is demo text. This is demo text.
         This is demo text. This is demo text.
         This is demo text. This is demo text.
      </div>
   </body>
</html>