Is it possible for hover to have two or more rules | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Is it possible for hover to have two or more rules

https://code.sololearn.com/Wddl7VTiexd5/?ref=app

13th Aug 2023, 2:35 PM
Alex Wairegi
Alex Wairegi - avatar
4 Answers
+ 2
You can try animation in combination with hover, where hover also sets the final result of animation. Like this :- https://code.sololearn.com/WSiAv40o3WFb/?ref=app
14th Aug 2023, 5:12 PM
Volt
Volt - avatar
+ 1
have you tried putting the transform functions together? .line div:nth-child(2):hover { transform: translate(70px, -15px) scale(1.1) rotate(360deg); background-color: red; }
14th Aug 2023, 12:17 AM
Bob_Li
Bob_Li - avatar
+ 1
Alex Wairegi what you tried was two separate transforms. only the last one will be applied if you do that. don't do: transform:translate(70px,-15px); transform:scale(1.1); but do this instead: transform:translate(70px,-15px) scale(1.1);
15th Aug 2023, 1:54 AM
Bob_Li
Bob_Li - avatar
0
Bob_Li Yes I already did that I had commented it .It's not giving the desired result . I want it to transform translate and enlarge in that order
14th Aug 2023, 4:40 PM
Alex Wairegi
Alex Wairegi - avatar