+ 4
What's wrong with my code? So this doesn't work..
2 Antworten
+ 2
What happens is that the "translate()" function you can use two values, the first one on the X axis (horizontal) and the second one on the Y axis (vertical), while translateY (vertical) or translateX (horizontal) only use one value
So for the translateY function to work, it must have only one
Example:
use
translateY(25px);
and don't use
translateY(25px, 75px);
+ 1
Okay got it and thank you Kevin E. Torres Caldas, now it's works 😊😊😊