I have a div with images in thumbnails that when I zoomed in on them, I zoomed in on them, the problem is that the ones on the edges go out and do not appear whole, I suppose there has to be some form of css limit the margins of the div and that are enlarged but adapting to it. Going around I can not find anything and I can not think of any more keywords: S
.zoomIt{
display:inline-block!important;
-webkit-transition:-webkit-transform 1s ease-out;
transition:transform 0.5s ease-out;
margin-top:px;
}
.zoomIt:hover{
margin-top:;
-webkit-transform: scale(2);
transform: scale(2)
}
This is the css with which I zoom in on the image.