a:hover{
-webkit-transform: scale(1.05);
-webkit-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-o-transform: scale(1.05);
}
a{
-webkit-transform: scale(1);
-webkit-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-o-transform: scale(1);
}
how can this be solved
Comments