[Solved] how to make hover effect like this site( grow gride on hover ) [closed]


This is the answer, enjoy:

.grow { transition: all .2s ease-in-out; }
.grow:hover { transform: scale(1.5,0); }

where grow is the class of Yours divs

1

solved how to make hover effect like this site( grow gride on hover ) [closed]