CSS unexpected style outcome | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

CSS unexpected style outcome

why owl's right pupil has different position after clicking on owl and how I can solve that. I've know the error came from CSS transform: rotate() in both .eye .right and pup-right. But I don't know how to keep this rotate without affecting to position of pup-right https://code.sololearn.com/WqCrbpJpWUUV Edit: I read all the answers but none of them correct. Maybe, my css code is not readable enough. Lets me explain: .left and .right are Childs of .eye pup-left and .pup-right are Childs of .pupil

25th Sep 2021, 6:10 AM
MasterofBeginning
MasterofBeginning - avatar
2 Answers
- 1
newStyle.innerHTML =`.pupil{ height:30px; animation: none !important; }`; Keep learning & happy coding :D
25th Sep 2021, 12:54 PM
SoloProg
SoloProg - avatar
- 2
.left { left: 27%; transform: rotate(90deg); } .pup-left { transform: rotate(-90deg);}
25th Sep 2021, 12:47 PM
dozule
dozule - avatar