CSS Responsive Gallery

Responsive galleries adapt to screen size.

Preview

Code

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

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

<div class="gallery">
<img src="https://picsum.photos/240/120">
<img src="https://picsum.photos/241/120">
<img src="https://picsum.photos/242/120">
</div>

More CSS Image Gallery Examples (9)