CSS Rounded Gallery Images

Border-radius can create rounded gallery images.

Preview

Code

<style>
.gallery img{
width:120px;
border-radius:10px;
margin:5px;
}
</style>

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

More CSS Image Gallery Examples (9)