CSS Gallery Spacing

Margin and gap control spacing between images.

Preview

Code

<style>
.gallery{
display:flex;
gap:15px;
}

.gallery img{
width:120px;
}
</style>

<div class="gallery">
<img src="https://picsum.photos/260/120">
<img src="https://picsum.photos/261/120">
</div>

More CSS Image Gallery Examples (9)