0
why the transform teg isn't responding??
body {background:pink; } .name{background:orange;color:white;width:300px;padding:25px;border-radius:30px;margin:auto;transform:rotate(70deg);transform:scale (1.5);}
3 ответов
+ 3
Do not post in comment section ,you should describe and write whatever in your question ,if you can link the code in description ,it would help us understand why it doesn't works
+ 1
Don't put multiple transforms that way, it overrides the previous one.
Do:
transform:rotate(70deg) scale(1.5);
+ 1
Alway remember in css, the same css selector always override the preceding one.