DEV Community

Cover image for Tailwind Gallery
Keep Coding
Keep Coding

Posted on

Tailwind Gallery

Responsive gallery built with the latest Tailwind. Responsive galleries variations.


Installation

Quick Start

In order to start using Tailwind simply download our starter.

DOWNLOAD ZIP STARTER

Tailwind Elements does not change or add any CSS to the already one from TailwindCSS.

You can directly copy our components into your Tailwind design and they will work straight away.

In some dynamic components (like dropdowns or modals) we add Font Awesome icons and custom JavaScript. However, they do not require any additional installation, all the necessary code is always included in the example and copied to any Tailwind project - it will work.


MDB GO


Customization

Basic example
HTML
<section class="overflow-hidden text-gray-700 ">
  <div class="container px-5 py-2 mx-auto lg:pt-12 lg:px-32">
      <div class="flex flex-wrap -m-1 md:-m-2">
          <div class="flex flex-wrap w-1/3">
              <div class="w-full p-1 md:p-2">
                  <img alt="gallery" class="block object-cover object-center w-full h-full rounded-lg"
                      src="https://dummyimage.com/800x600/F3F4F7/8693ac">
              </div>
          </div>
          <div class="flex flex-wrap w-1/3">
              <div class="w-full p-1 md:p-2">
                  <img alt="gallery" class="block object-cover object-center w-full h-full rounded-lg"
                      src="https://dummyimage.com/800x600/F3F4F7/8693ac">
              </div>
          </div>
          <div class="flex flex-wrap w-1/3">
              <div class="w-full p-1 md:p-2">
                  <img alt="gallery" class="block object-cover object-center w-full h-full rounded-lg"
                      src="https://dummyimage.com/800x600/F3F4F7/8693ac">
              </div>
          </div>
          <div class="flex flex-wrap w-1/3">
              <div class="w-full p-1 md:p-2">
                  <img alt="gallery" class="block object-cover object-center w-full h-full rounded-lg"
                      src="https://dummyimage.com/800x600/F3F4F7/8693ac">
              </div>
          </div>
          <div class="flex flex-wrap w-1/3">
              <div class="w-full p-1 md:p-2">
                  <img alt="gallery" class="block object-cover object-center w-full h-full rounded-lg"
                      src="https://dummyimage.com/800x600/F3F4F7/8693ac">
              </div>
          </div>
          <div class="flex flex-wrap w-1/3">
              <div class="w-full p-1 md:p-2">
                  <img alt="gallery" class="block object-cover object-center w-full h-full rounded-lg"
                      src="https://dummyimage.com/800x600/F3F4F7/8693ac">
              </div>
          </div>
      </div>
</section>
Enter fullscreen mode Exit fullscreen mode
Mix
HTML
<section class="overflow-hidden text-gray-700 ">
  <div class="container px-5 py-2 mx-auto lg:pt-24 lg:px-32">
  <div class="flex flex-wrap -m-1 md:-m-2">
      <div class="flex flex-wrap w-1/2">
          <div class="w-1/2 p-1 md:p-2">
              <img alt="gallery" class="block object-cover object-center w-full h-full rounded-lg"
                  src="https://dummyimage.com/500x300/F3F4F7/8693ac">
          </div>
          <div class="w-1/2 p-1 md:p-2">
              <img alt="gallery" class="block object-cover object-center w-full h-full rounded-lg"
                  src="https://dummyimage.com/501x301/F3F4F7/8693ac">
          </div>
          <div class="w-full p-1 md:p-2">
              <img alt="gallery" class="block object-cover object-center w-full h-full rounded-lg"
                  src="https://dummyimage.com/600x360/F3F4F7/8693ac">
          </div>
      </div>
      <div class="flex flex-wrap w-1/2">
          <div class="w-full p-1 md:p-2">
              <img alt="gallery" class="block object-cover object-center w-full h-full rounded-lg"
                  src="https://dummyimage.com/601x361/F3F4F7/8693ac">
          </div>
          <div class="w-1/2 p-1 md:p-2">
              <img alt="gallery" class="block object-cover object-center w-full h-full rounded-lg"
                  src="https://dummyimage.com/502x302/F3F4F7/8693ac">
          </div>
          <div class="w-1/2 p-1 md:p-2">
              <img alt="gallery" class="block object-cover object-center w-full h-full rounded-lg"
                  src="https://dummyimage.com/503x303/F3F4F7/8693ac">
          </div>
      </div>
  </div>
</section>
Enter fullscreen mode Exit fullscreen mode

You can see more customization examples on the ๐Ÿ“„ Gallery documentation page


Crucial Resources

Here are the resources that we have prepared to help you work with this component:

  1. Read ๐Ÿ“„ Gallery documentation page <-- start here
  2. In to get the most out of your project, you should also get acquainted with other Components options related to Gallery. See the section below to find the list of them.
  3. After finishing the project you can publish it with CLI in order to receive ๐Ÿ’ฝ Free hosting (beta)

Related Components options & features


Additional resources

Learn web development with our learning roadmap:
๐ŸŽ“ Start Learning

Join our mailing list & receive exclusive resources for developers
๐ŸŽ Get gifts

Join our private FB group for inspiration & community experience
๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ Ask to join

Support creation of open-source packages with a STAR on GitHub
GitHub stars

Top comments (0)