HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> h1{ font-size: 30px; font-stretch:condensed; animation: myAnimation 5s infinite; -webkit-animation: myAnimation 5s infinite; /* Safari 4.0 - 8.0 */ } @keyframes myAnimation { 50% { font-stretch:expanded; } } /* Safari 4.0 - 8.0 */ @-webkit-keyframes myAnimation { 50% { font-stretch:expanded; } } </style> </head> <body> <h1>CSS Animatable font-stretch</h1> <p><strong>Note</strong>: If this doesn't appear to work, it is likely that your browser doesn't have a condensed or expanded version of the font being used.</p> </body> </html>
OUTPUT
×

Save as Private