Tailwind Button group

Responsive button group built with Tailwind. Button group wraps a series of buttons together into a single line (navbar) or stack in a vertical column.

Installation

Quick Start

In order to start using Tailwind simply download …


This content originally appeared on DEV Community and was authored by MD Bootstrap

Responsive button group built with Tailwind. Button group wraps a series of buttons together into a single line (navbar) or stack in a vertical column.

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
<!-- Small -->
<div class="flex items-center justify-center mb-4">
  <button
    class="text-purple-500 bg-transparent border-l border-t border-b border-purple-500 hover:bg-purple-500 hover:text-white active:bg-purple-600 font-bold uppercase text-xs px-4 py-2 rounded-l outline-none focus:outline-none mb-1 ease-linear transition-all duration-150"
    type="button">
    Left
  </button>
  <button
    class="text-purple-500 bg-transparent border border-solid border-purple-500 hover:bg-purple-500 hover:text-white active:bg-purple-600 font-bold uppercase text-xs px-4 py-2 outline-none focus:outline-none mb-1 ease-linear transition-all duration-150"
    type="button">
    Center
  </button>
  <button
    class="text-purple-500 bg-transparent border-t border-b border-r border-purple-500 hover:bg-purple-500 hover:text-white active:bg-purple-600 font-bold uppercase text-xs px-4 py-2 rounded-r outline-none focus:outline-none mb-1 ease-linear transition-all duration-150"
    type="button">
    Right
  </button>
</div>

<!-- Medium -->
<div class="flex items-center justify-center mb-4">
  <button
    class="text-purple-500 bg-transparent border-l border-t border-b border-purple-500 hover:bg-purple-500 hover:text-white active:bg-purple-600 font-bold uppercase text-sm px-6 py-3 rounded-l outline-none focus:outline-none mb-1 ease-linear transition-all duration-150"
    type="button">
    Left
  </button>
  <button
    class="text-purple-500 bg-transparent border border-solid border-purple-500 hover:bg-purple-500 hover:text-white active:bg-purple-600 font-bold uppercase text-sm px-6 py-3 outline-none focus:outline-none mb-1 ease-linear transition-all duration-150"
    type="button">
    Center
  </button>
  <button
    class="text-purple-500 bg-transparent border-t border-b border-r border-purple-500 hover:bg-purple-500 hover:text-white active:bg-purple-600 font-bold uppercase text-sm px-6 py-3 rounded-r outline-none focus:outline-none mb-1 ease-linear transition-all duration-150"
    type="button">
    Right
  </button>
</div>

<!-- Large -->
<div class="flex items-center justify-center mb-4">
  <button
    class="text-purple-500 bg-transparent border-l border-t border-b border-purple-500 hover:bg-purple-500 hover:text-white active:bg-purple-600 font-bold uppercase text-base px-8 py-3 rounded-l outline-none focus:outline-none mb-1 ease-linear transition-all duration-150"
    type="button">
    Left
  </button>
  <button
    class="text-purple-500 bg-transparent border border-solid border-purple-500 hover:bg-purple-500 hover:text-white active:bg-purple-600 font-bold uppercase text-base px-8 py-3 outline-none focus:outline-none mb-1 ease-linear transition-all duration-150"
    type="button">
    Center
  </button>
  <button
    class="text-purple-500 bg-transparent border-t border-b border-r border-purple-500 hover:bg-purple-500 hover:text-white active:bg-purple-600 font-bold uppercase text-base px-8 py-3 rounded-r outline-none focus:outline-none mb-1 ease-linear transition-all duration-150"
    type="button">
    Right
  </button>
</div>
Icon group
HTML
<!-- Required font awesome -->
      <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.11.2/css/all.css" />

      <!-- Small -->
      <div class="flex items-center justify-center mb-4">
        <button
          class="text-purple-500 bg-transparent border-l border-t border-b border-purple-500 hover:bg-purple-500 hover:text-white active:bg-purple-600 font-bold uppercase text-xs px-4 py-2 rounded-l outline-none focus:outline-none mb-1 ease-linear transition-all duration-150"
          type="button">
          <i class="fas fa-user"></i>
        </button>
        <button
          class="text-purple-500 bg-transparent border border-solid border-purple-500 hover:bg-purple-500 hover:text-white active:bg-purple-600 font-bold uppercase text-xs px-4 py-2 outline-none focus:outline-none mb-1 ease-linear transition-all duration-150"
          type="button">
          <i class="fas fa-heart"></i>
        </button>
        <button
          class="text-purple-500 bg-transparent border-t border-b border-r border-purple-500 hover:bg-purple-500 hover:text-white active:bg-purple-600 font-bold uppercase text-xs px-4 py-2 rounded-r outline-none focus:outline-none mb-1 ease-linear transition-all duration-150"
          type="button">
          <i class="fas fa-wrench"></i>
        </button>
      </div>

      <!-- Medium -->
      <div class="flex items-center justify-center mb-4">
        <button
          class="text-purple-500 bg-transparent border-l border-t border-b border-purple-500 hover:bg-purple-500 hover:text-white active:bg-purple-600 font-bold uppercase text-sm px-6 py-3 rounded-l outline-none focus:outline-none mb-1 ease-linear transition-all duration-150"
          type="button">
          <i class="fas fa-user"></i>
        </button>
        <button
          class="text-purple-500 bg-transparent border border-solid border-purple-500 hover:bg-purple-500 hover:text-white active:bg-purple-600 font-bold uppercase text-sm px-6 py-3 outline-none focus:outline-none mb-1 ease-linear transition-all duration-150"
          type="button">
          <i class="fas fa-heart"></i>
        </button>
        <button
          class="text-purple-500 bg-transparent border-t border-b border-r border-purple-500 hover:bg-purple-500 hover:text-white active:bg-purple-600 font-bold uppercase text-sm px-6 py-3 rounded-r outline-none focus:outline-none mb-1 ease-linear transition-all duration-150"
          type="button">
          <i class="fas fa-wrench"></i>
        </button>
      </div>

      <!-- Large -->
      <div class="flex items-center justify-center mb-4">
        <button
          class="text-purple-500 bg-transparent border-l border-t border-b border-purple-500 hover:bg-purple-500 hover:text-white active:bg-purple-600 font-bold uppercase text-base px-8 py-3 rounded-l outline-none focus:outline-none mb-1 ease-linear transition-all duration-150"
          type="button">
          <i class="fas fa-user"></i>
        </button>
        <button
          class="text-purple-500 bg-transparent border border-solid border-purple-500 hover:bg-purple-500 hover:text-white active:bg-purple-600 font-bold uppercase text-base px-8 py-3 outline-none focus:outline-none mb-1 ease-linear transition-all duration-150"
          type="button">
          <i class="fas fa-heart"></i>
        </button>
        <button
          class="text-purple-500 bg-transparent border-t border-b border-r border-purple-500 hover:bg-purple-500 hover:text-white active:bg-purple-600 font-bold uppercase text-base px-8 py-3 rounded-r outline-none focus:outline-none mb-1 ease-linear transition-all duration-150"
          type="button">
          <i class="fas fa-wrench"></i>
        </button>
      </div>

You can see more customization examples on the 📄 Button group documentation page

Crucial Resources

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

  1. Read 📄 Button group 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 Button group. 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


This content originally appeared on DEV Community and was authored by MD Bootstrap


Print Share Comment Cite Upload Translate Updates
APA

MD Bootstrap | Sciencx (2021-10-08T08:40:16+00:00) Tailwind Button group. Retrieved from https://www.scien.cx/2021/10/08/tailwind-button-group/

MLA
" » Tailwind Button group." MD Bootstrap | Sciencx - Friday October 8, 2021, https://www.scien.cx/2021/10/08/tailwind-button-group/
HARVARD
MD Bootstrap | Sciencx Friday October 8, 2021 » Tailwind Button group., viewed ,<https://www.scien.cx/2021/10/08/tailwind-button-group/>
VANCOUVER
MD Bootstrap | Sciencx - » Tailwind Button group. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/10/08/tailwind-button-group/
CHICAGO
" » Tailwind Button group." MD Bootstrap | Sciencx - Accessed . https://www.scien.cx/2021/10/08/tailwind-button-group/
IEEE
" » Tailwind Button group." MD Bootstrap | Sciencx [Online]. Available: https://www.scien.cx/2021/10/08/tailwind-button-group/. [Accessed: ]
rf:citation
» Tailwind Button group | MD Bootstrap | Sciencx | https://www.scien.cx/2021/10/08/tailwind-button-group/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.