Rectangle Turns To Square Why? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Rectangle Turns To Square Why?

So in the code below I'm trying some CSS transitions and transformations. When I hover on it the rectangle turns 90deg like it should. When I click off of it the 90deg rectangle turns into a square. Why does it turn into a square instead of back to a 0deg rectangle? https://code.sololearn.com/Wwprq8H47i1T/?ref=app

1st Aug 2017, 1:16 PM
MemeSenpai
MemeSenpai - avatar
6 Answers
+ 3
move -webkit-transition and its value to article rule
1st Aug 2017, 1:34 PM
Yanothai Chaitawat
Yanothai Chaitawat - avatar
+ 3
-webkit-animation-fill-mode: forwards appears to keep animation state after using keyframes. https://stackoverflow.com/a/18457561 (By the way I just see a rectangle always; no squares appear here)
1st Aug 2017, 1:35 PM
Kirk Schafer
Kirk Schafer - avatar
+ 2
Seems like 'hover' no longer applies.
1st Aug 2017, 1:24 PM
Kirk Schafer
Kirk Schafer - avatar
+ 2
@Kirk Schafer Me too!
1st Aug 2017, 1:57 PM
Yanothai Chaitawat
Yanothai Chaitawat - avatar
0
@Kirk Schafer Hmmm...well I am on mobile so that may be the problem
1st Aug 2017, 2:02 PM
MemeSenpai
MemeSenpai - avatar
0
@Very_Hard(java & c++ & c# & py & rust & (AllHard)) Thanks for the answer. I moved the -webkit-transition and it worked I just had to specify which to animate.
1st Aug 2017, 2:05 PM
MemeSenpai
MemeSenpai - avatar