- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Perform Animation on CSS margin-right property
To implement animation on margin-right property with CSS, you can try to run the following code
Example
<!DOCTYPE html> <html> <head> <style> div { background-color: blue; animation: myanim 4s infinite; color: white; } @keyframes myanim { 30% { margin-right: 30px; } } </style> </head> <body> <h2>Heading One</h2> <div> This is demo text. </div> </body> </html>
- Related Articles
- Perform Animation on CSS margin-top
- Perform Animation on CSS border-right property
- Perform Animation on CSS border-bottom-right-radius property
- Perform Animation on CSS border-top-right-radius property
- Perform Animation on CSS clip property
- Perform Animation on CSS color property
- Perform Animation on CSS font property
- Perform Animation on CSS perspective property
- Perform Animation on border-right-color property
- Perform Animation on border-right-width property
- Perform Animation on CSS font-weight property
- Perform Animation on CSS font-size property
- Perform Animation on CSS letter-spacing property
- Perform Animation on CSS line-height property
- Perform Animation on CSS padding-top property

Advertisements