सीएसएस के साथ मार्जिन-टॉप प्रॉपर्टी पर एनिमेशन लागू करने के लिए, आप निम्न कोड को चलाने का प्रयास कर सकते हैं
उदाहरण
<!DOCTYPE html> <html> <head> <style> div { background-color: orange; animation: myanim 4s infinite; color: white; } @keyframes myanim { 30% { margin-top: 30px; } } </style> </head> <body> <h2>Heading One</h2> <div> This is demo text. </div> </body> </html>