Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example of CSS3 font-size-adjust Property Animation</title> <style> .animated { font-size: 24px; font-family: "DejaVu Sans", Arial, sans-serif; font-size-adjust: 0.6; animation: test 4s infinite; } /* Standard syntax */ @keyframes test { 50% {font-size-adjust: 1;} } </style> </head> <body> <p><strong>Warning:</strong> The font-size-adjust property is only supported in Firefox. You should better avoid using this property.</p> <p class="animated">This is an animated paragraph.</p> </body> </html>