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.
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>
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>
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:
- Read ๐ Accordion documentation page <-- start here
- 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.
- After finishing the project you can publish it with CLI in order to receive ๐ฝ Free hosting (beta)
Related Components options & features
- Alerts
- Badges
- Button group
- Buttons
- Cards
- Carousel
- Charts
- Chips
- Dropdown
- Gallery
- Headings
- Images
- List group
- Modal
- Paragraphs
- Popover
- Progress
- Rating
- Spinners
- Stepper
- Tables
- Template
- Toast
- Tooltip
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
Top comments (0)