My grid view is structured as follows:
jQuery(window).resize(function(evt) {
jQuery(".grid-content > div > div > .channelImage").height(jQuery(".grid-content > div > div > .channelImage").width());
});
jQuery(function() {
jQuery(window).resize();
});
body {
background-color: rgba(48, 48, 48, 1);
}
body>.container {
max-width: 90vw;
}
// More CSS code here
// Embedded links for Bootstrap and jQuery
// Grid structure HTML code
I am currently working on implementing an interactive feature where the squares in the grid enlarge when hovered over by the user. However, adjusting the margins to achieve this effect causes other boxes to shift position. How can I enlarge the squares without affecting the layout of the other boxes?