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
1 Réponse
+ 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;
    
}



