HTML CSS examples for CSS Animatable Property:margin-left
In the following code the margin-left property of the div box is animating from its initial value "0" to "300px", and back to the initial value "0" again up to infinite times.
-webkit- prefix is for Chrome, Safari, Opera.
-moz- prefix is for Firefox.
<!DOCTYPE html> <html lang="en"> <head> <title>Example of CSS margin-left Property Animation</title> <style type="text/css"> .animated {<!--from w w w. j av a2s . com--> padding: 40px 0; font: bold 50px sans-serif; text-align: center; background: #EEEEEE; border: 1px solid red; -webkit-animation: test 4s infinite; animation: test 4s infinite; } @-webkit-keyframes test { 50% {margin-left: 300px;} } @keyframes test { 50% {margin-left: 300px;} } </style> </head> <body> <div class="animated"> Box </div> <p> </p> </body> </html>