HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> h1{ font-size: 30px; animation: myAnimation 2s infinite; -webkit-animation: myAnimation 2s infinite; /* Safari 4.0 - 8.0 */ } @keyframes myAnimation { 50% { font-size-adjust: 0.5; } } /* Safari 4.0 - 8.0 */ @-webkit-keyframes myAnimation { 50% { font-size-adjust: 0.5; } } </style> </head> <body> <h1>CSS Animatable font-size-adjust</h1> <p><strong>Note</strong>: CSS Animatable font-size-adjust works only in firefox.</p> </body> </html>
OUTPUT
×

Save as Private