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

คุณสมบัติการเยื้องข้อความ CSS เคลื่อนไหว


หากต้องการใช้งานแอนิเมชั่นบนคุณสมบัติ text-indent ด้วย 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>