- 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 font property
To implement animation on font property with CSS, you can try to run the following code:
Example
<!DOCTYPE html> <html> <head> <style> p { border: 2px solid black; width: 400px; height: 100px; animation: myanim 5s infinite; } @keyframes myanim { 70% { font: 35px arial, sans-serif; } } </style> </head> <body> <p>This is demo text</p> </body> </html>
- Related Articles
- Perform Animation on CSS font-weight property
- Perform Animation on CSS font-size property
- Perform Animation on CSS perspective property
- Perform Animation on CSS clip property
- Perform Animation on CSS color property
- Perform Animation on CSS letter-spacing property
- Perform Animation on CSS line-height property
- Perform Animation on CSS margin-right property
- Perform Animation on CSS padding-top property
- Perform Animation on CSS perspective-origin property
- Perform Animation on CSS border-right property
- Perform Animation on CSS border-bottom-color property
- Perform Animation on background-position property with CSS
- Perform Animation on border-bottom-width CSS property
- Perform Animation on CSS border-bottom-left-radius property

Advertisements