0
Why not working in sandbox css this comand transform: rotate(45deg); (in note pad ++ working)
Please help me
3 Antworten
+ 4
JASTER HACK's
No one can help you.
- because you did not share the code
Paste it inside the playground and link it to this thread.
+ 4
Manual You must have lost your "mind-reading" hat. 😂
I'm guessing this might be the code from his Code Playground.
https://code.sololearn.com/WrChh06MYx60/?ref=app
+ 3
JASTER HACK's
Line 39 of your CSS is:
transform: rotate(45px) ;
It should be:
transform: rotate(45deg);
Changing the unit from `px` to `deg` will resolve your issue.