Skip to main content

Gallery

Gallery components for your website, especially for the sections where you want to put a group of images.


<div class="gallery">
<figure class="image-gallery">
<img src="..." alt="..." />
</figure>
</div>

<div class="gallery is-squared">
<figure class="image-gallery">
<img src="..." alt="..." />
</figure>
</div>

You can create a masonry gallery using Tailwind CSS in a few steps, you can divide the columns using Columns from Tailwind CSS. By Default is 4.

<div class="masonry-gallery columns-4">
<figure class="image-gallery">
<img src="..." alt="..." />
</figure>
</div>

<div class="gallery">
<figure class="image-gallery">
<img src="..." class="image-gallery is-rounded" />
<!-- is-rounded -->
</figure>
<figure class="image-gallery">
<img src="..." class="image-gallery is-large-rounded" />
<!-- is-large-rounded -->
</figure>
</div>