Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example of CSS3 font-stretch Property Animation</title> <style> .animated { font-size: 24px; font-family: Arial, Helvetica, sans-serif; font-stretch: ultra-condensed; animation: test 4s infinite; } /* Standard syntax */ @keyframes test { 50% {font-stretch: ultra-expanded;} } </style> </head> <body> <p><strong>Warning:</strong> The font-stretch property is not supported by the Chrome, Safari and Opera browsers. Internet Explorer does not support animation on the font-stretch property.</p> <p class="animated">This is an animated paragraph.</p> </body> </html>