DEV Community

Cover image for Tailwind Cards
Keep Coding
Keep Coding

Posted on

Tailwind Cards

Responsive cards built with Tailwind. Card is a flexible content container with an extensible option for headers, footers, images, and a wide variety of content.


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

Simple card
HTML
<!-- Card -->
    <div class="shadow-md rounded-md" style="width: 350px;">

      <div class="p-5">
          <h5 class="text-xl font-semibold mb-2">Card title</h5>

          <p class="mb-4">Lorem ipsum dolor sit amet consectetur adipisicing elit. Iure sequi tenetur, voluptatibus
              harum
              consequuntur
              alias quaerat excepturi temporibus nisi commodi, ex, ratione quae soluta! Saepe alias dolores dolorem
              assumenda totam?</p>

          <button
              class="bg-purple-500 text-white active:bg-purple-600 font-bold uppercase text-xs px-4 py-2 rounded shadow hover:shadow-md outline-none focus:outline-none mr-1 mb-1 ease-linear transition-all duration-150"
              type="button">
              Button
          </button>

      </div>

  </div>
  <!-- Card -->
Enter fullscreen mode Exit fullscreen mode
Card with image
HTML
<!-- Card -->
    <div class="shadow-md rounded-md overflow-hidden" style="width: 350px;">

      <img src="https://mdbootstrap.com/img/new/standard/city/031.jpg" class="" alt="">

      <div class="p-4">
          <h5 class="text-xl font-semibold mb-2">Card title</h5>

          <p class="mb-4">Lorem ipsum dolor sit amet consectetur adipisicing elit. Iure sequi tenetur, voluptatibus
              harum
              consequuntur
              alias quaerat excepturi temporibus nisi commodi, ex, ratione quae soluta! Saepe alias dolores dolorem
              assumenda totam?</p>

          <button
              class="bg-purple-500 text-white active:bg-purple-600 font-bold uppercase text-xs px-4 py-2 rounded shadow hover:shadow-md outline-none focus:outline-none mr-1 mb-1 ease-linear transition-all duration-150"
              type="button">
              Button
          </button>
      </div>
  </div>
  <!-- Card -->
Enter fullscreen mode Exit fullscreen mode

You can see more customization examples on the πŸ“„ Cards documentation page


Crucial Resources

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

  1. Read πŸ“„ Cards 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 Cards. 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)