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>