CSS
Build a Responsive Image Gallery with CSS Grid
Create a beautiful and responsive image gallery layout using CSS Grid's `grid-template-columns`, `auto-fit`, `minmax`, and `gap` properties.
.image-gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1rem; /* Spacing between grid items */
padding: 1rem;
}
.gallery-item {
/* Optional styling for image containers */
border: 1px solid #ddd;
border-radius: 5px;
overflow: hidden;
}
.gallery-item img {
width: 100%;
height: 200px; /* Fixed height for demo */
object-fit: cover; /* Ensures images fill their space nicely */
display: block;
}
How it works: This CSS Grid snippet creates a responsive image gallery. `display: grid` initiates the grid. `grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))` tells the browser to create as many columns as possible, each at least 250px wide, and allowing them to grow equally. `gap: 1rem` adds consistent spacing between all grid items.