Create Movement Using CSS Animation aide

Tell us what’s happening:

here is the code that changed

Your code so far


<style>
  div {
    height: 40px;
    width: 70%;
    background: black;
    margin: 50px auto;
    border-radius: 5px;
    position: relative;
    horizontal: left;
  }

#rect {
  animation-name: rainbow;
  animation-duration: 4s;
}

@keyframes rainbow {
  0% {
    background-color: blue;
    top: 0px;
    
  }
  50% {
    background-color: green;
    top: 25px;
    
  }
  100% {
    background-color:  yellow;
    top: -25px;
    
  }
}
</style>

<div id="rect"></div>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/create-movement-using-css-animation

Hey I told you in the previous thread.

You don’t modify values of top properties.

Go head and create left properties and assign values there.

1 Like

Hey thank you so much for clearing up this exercise with the one that is posted. i appreciate it.
:sunglasses: