<!DOCTYPE html>
<title>Example</title>
<style>
.animatedBox {
padding: 20px;
text-align: center;
font: 24px sans-serif;
color: white;
background: yellowgreen;
margin: 0px;
animation: myAnimation 1s ease 1s 3 alternate forwards;
}
@keyframes myAnimation {
100% {
margin: 100px;
</style>
<div class="animatedBox">Animated box</div>