+ 1
Help me, please
Hello, i need in your help. Tell me, please, why two blocks go down ? Sorry for my english. https://code.sololearn.com/W05E15W9X0Cp/?ref=app
3 Respuestas
+ 15
@keyframes forAction {
0% {
transform:translate(0);
}
100% {
transform:translate(0, -90px);
}
}
because
transform:translate(0, -90px);
will translate the position of the two blocks
+ 14
Сергей Амельченков you're welcome
+ 1
Thanks for answer :)