I am working on a gallery that features multiple images and I want the images to zoom in when hovered over without resizing the container. My project is built using Bootstrap 4.
<div class="row">
<div class="col-12"><img class="galleryimg" src="images/3GALLERY-1A.jpg" width="100%" height="" alt=""/></div>
<div class="col-12 "><img class="galleryimg" src="images/3GALLERY-2A.jpg" width="100%" height="" alt=""/></div></row>
css-------------------------------------------------------------------------------------------------------------------------------------------------------------------
img.galleryimg{
width: 100%;
transition: 0.4s ease;
transform-origin: 50% 50%;}
img.galleryimg:hover{
transform: scale(1.2);
width: 100%;}