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

Tạo hoạt ảnh cho thuộc tính thụt lề văn bản CSS


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

Ví dụ

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