Tell us what’s happening:
Your code so far
<colors
div {
height: 40px;
width: 70%;
background: black;
margin: 50px auto;
border-radius: 5px;
keyframes
#rect {
animation-name: rainbow;
animation-duration: 4s;
}
@keyframes colorful {
0%{
background-color: blue;
}
50%{
background-color: green;
}
100% {
background-color: yellow;
}
}
</style>
<div id="rect"></div>
Your browser information:
User Agent is: Mozilla/5.0 (Linux; Android 10; SM-M315F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Mobile Safari/537.36
.
Challenge: Learn How the CSS @keyframes and animation Properties Work
Link to the challenge: