<div>Container</div> <style> div { background: gray; animation: 60s linear 0s infinite alternate change_height; } @keyframes change_height { from { height: 100px; } to { height: 400px; } } </style>