It's possible to do a perfect Logo with html and css and more like zoom orietation whithout the logo change form? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

It's possible to do a perfect Logo with html and css and more like zoom orietation whithout the logo change form?

If i do the logo, wen i zoom it break the word i don't that i want it fix like an image. https://code.sololearn.com/WAd4zTrgU8py/?ref=app

24th Dec 2019, 10:26 AM
Zac-SANE
Zac-SANE - avatar
1 Answer
+ 2
Remove width attribute in .zoom. Now it's fine before: .zoom:hover{ transform:scale(1.5); -ms-tranqform:scale(1.5); margin:auto; width:50%; } after: .zoom:hover{ transform:scale(1.5); -ms-tranqform:scale(1.5); margin:auto; }
24th Dec 2019, 10:33 AM
molang
molang - avatar