0
CSS animation
Can someone tell me why my animation isnât working I want to move the text from left to right. .sign{ font-size: 20px; text-shadow: -10px 0px 10px black ; animation-name: signa; animation-duration: 5s; } @keyframe signa{ from {text-align: right;} to {text-align: left;} } Hereâs the full code https://code.sololearn.com/WZoI3pm8RmA2/?ref=app
2 Answers
+ 3
Syntax error: @keyframes
And use shorthand animation
animation: signa 5s linear 0s infinite;
+ 2
thank you!