HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> p{ animation: myAnimation 2s infinite; -webkit-animation: myAnimation 2s infinite; /* Safari 4.0 - 8.0 */ } @keyframes myAnimation { 50% {text-indent: 50px;} } /* Safari 4.0 - 8.0 */ @-webkit-keyframes myAnimation { 50% {text-indent: 50px;} } </style> </head> <body> <h1>CSS Animatable text-indent</h1> <p>Elon Musk is the co-founder and CEO at Tesla, overseeing all product design, engineering and manufacturing of the company's electric vehicles, battery products, and Solar Roofs.</p> </body> </html>
OUTPUT
×

Save as Private