8 lines
119 B
CSS
8 lines
119 B
CSS
img {
|
|
transition:transform 0.25s ease;
|
|
}
|
|
|
|
img:hover {
|
|
-webkit-transform:scale(1.5);
|
|
transform:scale(1.5);
|
|
} |