CSS Grid Image Gallery

CSS grid can create structured image galleries.

Preview

Code

<style>
.gallery{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:10px;
}

.gallery img{
width:100%;
}
</style>

<div class="gallery">
<img src="https://picsum.photos/200/120">
<img src="https://picsum.photos/201/120">
<img src="https://picsum.photos/202/120">
</div>

More CSS Image Gallery Examples (9)