DEV Community

Cover image for Tailwind Accordion
Keep Coding
Keep Coding

Posted on

Tailwind Accordion

Responsive accordion built with Tailwind. Accordion is a vertically collapsing element to show and hide content via class changes.


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
<p class="my-5 text-left">Closed</p>
<div
  class="text-xl font-medium text-left bg-white hover:bg-gray-100 hover:bg-opacity-50 duration-300 p-3 rounded-lg"
  role="alert"
>
  Click me to open!
</div>

<p class="my-5 text-left">Opened</p>

<div
  class="text-xl font-medium text-left bg-white bg-gray-100 bg-opacity-50 duration-300 p-3 rounded-lg rounded-b-none"
  role="alert"
>
  Opened
</div>
<div class="bg-gray-100 bg-opacity-50 p-3 pt-1 rounded-b-lg">
  Lorem, ipsum dolor sit amet consectetur adipisicing elit. Veritatis
  ipsam ipsa veniam, ratione incidunt dolores maiores nobis reprehenderit
  voluptas, quaerat delectus reiciendis corporis dolorum vero itaque unde
  ut corrupti tenetur?
</div>
Enter fullscreen mode Exit fullscreen mode
With arrow
HTML
<p class="my-5 text-left">Closed </p>
<div
  class="text-xl font-medium bg-white hover:bg-gray-100 hover:bg-opacity-50 duration-300 p-3 rounded-lg flex justify-between"
  role="alert"
>
  Click me to open!
  <i class="fas fa-chevron-down mt-1"></i>
</div>

<p class="my-5 text-left">Opened</p>

<div
  class="text-xl font-medium bg-white bg-gray-100 bg-opacity-50 duration-300 p-3 rounded-lg rounded-b-none flex justify-between"
  role="alert"
>
  Opened
  <i class="fas fa-chevron-up"></i>
</div>
<div class="bg-gray-100 bg-opacity-50 p-3 pt-1 rounded-b-lg">
  Lorem, ipsum dolor sit amet consectetur adipisicing elit. Veritatis
  ipsam ipsa veniam, ratione incidunt dolores maiores nobis reprehenderit
  voluptas, quaerat delectus reiciendis corporis dolorum vero itaque unde
  ut corrupti tenetur?
</div>
Enter fullscreen mode Exit fullscreen mode

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


Crucial Resources

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

  1. Read ๐Ÿ“„ Accordion 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 Accordion. 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)