test #flashMe { height:500px; width:500px; background:black; animation: flash 3s forwards linear normal; } @keyframes flash { 0% { background:black; } 4% { background:green; } 100% { background:red; } }