

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Animate CSS text-indent property
To implement animation on text-indent property with CSS, you can try to run the following code −
Example
<!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>
- Related Questions & Answers
- Indent Text with CSS text-indent Property
- Usage of text-indent property in CSS
- Animate CSS text-shadow property
- Animate CSS text-decoration-color property
- Animate bottom CSS property
- Animate CSS flex property
- Animate CSS border property
- Animate CSS height property
- Animate CSS margin property
- Animate CSS width property
- Animate CSS right property
- Animate CSS order property
- Animate CSS padding property
- Indent the text of a paragraph with CSS
- Animate CSS border-top property
Advertisements