DEV Community

Cover image for Tailwind Badges
Keep Coding
Keep Coding

Posted on

Tailwind Badges

Responsive Badges built with the latest Tailwind. Badges add extra information like count or label to any content. Use counters, icons, or labels. Many examples and easy tutorial.


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
HTML
<div class="flex space-x-2">
  <span
    class="text-xs px-2 font-medium bg-gray-500 bg-opacity-10 text-gray-800 rounded py-0.5"
  >
    Badge
  </span>
  <span
    class="text-xs px-2 font-medium bg-red-500 bg-opacity-10 text-red-800 rounded py-0.5"
  >
    Badge
  </span>

  <span
    class="text-xs px-2 font-medium bg-yellow-500 bg-opacity-10 text-yellow-800 rounded py-0.5"
  >
    Badge
  </span>
  <span
    class="text-xs px-2 font-medium bg-green-500 bg-opacity-10 text-green-800 rounded py-0.5"
  >
    Badge
  </span>

  <span
    class="text-xs px-2 font-medium bg-blue-500 bg-opacity-10 text-blue-800 rounded py-0.5"
  >
    Badge
  </span>
  <span
    class="text-xs px-2 font-medium bg-purple-500 bg-opacity-10 text-purple-800 rounded py-0.5"
  >
    Badge
  </span>
  <span
    class="text-xs px-2 font-medium bg-indigo-500 bg-opacity-10 text-indigo-800 rounded py-0.5"
  >
    Badge
  </span>
  <span
    class="text-xs px-2 font-medium bg-pink-500 bg-opacity-10 text-pink-800 rounded py-0.5"
  >
    Badge
  </span>
</div>
Enter fullscreen mode Exit fullscreen mode
Basic badges with solid color
HTML
<div class="flex space-x-2">
  <span
    class="text-xs px-2 font-medium bg-gray-500 text-white rounded py-0.5"
  >
    Badge
  </span>
  <span
    class="text-xs px-2 font-medium bg-red-500 text-white rounded py-0.5"
  >
    Badge
  </span>

  <span
    class="text-xs px-2 font-medium bg-yellow-500 text-white rounded py-0.5"
  >
    Badge
  </span>
  <span
    class="text-xs px-2 font-medium bg-green-500 text-white rounded py-0.5"
  >
    Badge
  </span>

  <span
    class="text-xs px-2 font-medium bg-blue-500 text-white rounded py-0.5"
  >
    Badge
  </span>
  <span
    class="text-xs px-2 font-medium bg-purple-500 text-white rounded py-0.5"
  >
    Badge
  </span>
  <span
    class="text-xs px-2 font-medium bg-indigo-500 text-white rounded py-0.5"
  >
    Badge
  </span>
  <span
    class="text-xs px-2 font-medium bg-pink-500 text-white rounded py-0.5"
  >
    Badge
  </span>
</div>
Enter fullscreen mode Exit fullscreen mode

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


Crucial Resources

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

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