🌐
Flowbite
flowbite.com › docs › components › buttons
Tailwind CSS Buttons - Flowbite
Use the button component inside forms, as links, social login, payment options with support for multiple styles, colors, sizes, gradients, and shadows
🌐
Tailwind CSS
v1.tailwindcss.com › components › buttons
Buttons - Tailwind CSS
Here are a few examples to help you get an idea of how to build components like this using Tailwind. ... <!-- Using utilities: --> <button class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded"> Button </button> <!-- Extracting component classes: --> <button class="btn btn-blue"> Button </button> <style> .btn { @apply font-bold py-2 px-4 rounded; } .btn-blue { @apply bg-blue-500 text-white; } .btn-blue:hover { @apply bg-blue-700; } </style>
🌐
FlyonUI
flyonui.com › docs › components › button
Tailwind CSS Button | FlyonUI
<button class="btn">Default</button> <button class="btn btn-primary">Primary</button> <button class="btn btn-secondary">Secondary</button> <button class="btn btn-accent">Accent</button> <button class="btn btn-info">Info</button> <button class="btn btn-success">Success</button> <button class="btn btn-warning">Warning</button> <button class="btn btn-error">Error</button>
🌐
Ibelick
buttons.ibelick.com
Tailwind CSS button collection - Click-to-copy integration
Discover a collection of Tailwind CSS buttons designed to enhance your website's look. Easy to integrate with a copy-paste, no js.
🌐
Preline UI
preline.co › docs › buttons.html
Tailwind CSS Buttons | Free Preline UI Components
Explore the most commonly used button styles such as solid, outline, ghost, soft, link, and more.
🌐
Material Tailwind
material-tailwind.com › docs › html › button
Tailwind CSS Button - Material Tailwind
Use our versatile and stylish button examples styled with Tailwind CSS that come in various sizes, states, and styles, including filled, gradient, outlined, and text buttons, alongside customization options for colors and icons.
🌐
Uiverse
uiverse.io › buttons
1975 Buttons: CSS & Tailwind
Open-Source buttons made with CSS or Tailwind · First page · #neumorphism#3d#gradient · All · Tailwind · CSS · Sort: RandomizedAny theme · Filters · Sort: RandomizedCategory · Category · Get code · Link to post · 00Kubi · Get code · Link to post ·
🌐
Tailwindui
catalyst.tailwindui.com › docs › button
Button - Catalyst UI Kit for Tailwind CSS
Use the plain prop for a simple button style with no border, shadows or background color:
Find elsewhere
🌐
DevDojo
devdojo.com › tailwindcss › buttons
TailwindCSS Buttons - DevDojo
<a href="#_" class="relative inline-block text-lg group"> <span class="relative z-10 block px-5 py-3 overflow-hidden font-medium leading-tight text-gray-800 transition-colors duration-300 ease-out border-2 border-gray-900 rounded-lg group-hover:text-white"> <span class="absolute inset-0 w-full h-full px-5 py-3 rounded-lg bg-gray-50"></span> <span class="absolute left-0 w-48 h-48 -ml-2 transition-all duration-300 origin-top-right -rotate-90 -translate-x-full translate-y-12 bg-gray-900 group-hover:-rotate-180 ease"></span> <span class="relative">Button Text</span> </span> <span class="absolute bottom-0 right-0 w-full h-12 -mb-1 -mr-1 transition-all duration-200 ease-linear bg-gray-900 rounded-lg group-hover:mb-0 group-hover:mr-0" data-rounded="rounded-lg"></span> </a>
🌐
DEV Community
dev.to › ruqaiya_beguwala › day-3-button-styling-in-tailwind-css-create-beautiful-buttons-in-one-line-24ag
Day 3: Button Styling in Tailwind CSS — Create Beautiful Buttons in One Line - DEV Community
July 16, 2025 - <button class="px-4 py-2 border border-indigo-600 text-indigo-600 rounded hover:bg-indigo-50"> Outline Button </button> This style works great for secondary actions or less prominent UI interactions. Tailwind also allows you to easily add smooth animations with transition classes:
🌐
Pagedone
pagedone.io › docs › buttons
Tailwind CSS Buttons | Pagedone
Use Tailwind CSS Button component inside forms, links, and payment options for a better user interface with multiple styles, sizes and shadows
🌐
FreeFrontend
freefrontend.com › tailwind-buttons
46 Tailwind Buttons
February 4, 2026 - See the Pen Animated Button with Hover Effects (Tailwind CSS). ... A polished set of “Download on App Store” and “Get it on Google Play” buttons, styled with Tailwind CSS and custom CSS enhancements.
🌐
TW Elements
tw-elements.com › docs › standard › components › buttons
Tailwind CSS Buttons - Free Examples & Tutorial
<button type="button" class="inline-block rounded-full bg-primary px-6 pb-2 pt-2.5 text-xs font-medium uppercase leading-normal text-white shadow-primary-3 transition duration-150 ease-in-out hover:bg-primary-accent-300 hover:shadow-primary-2 focus:bg-primary-accent-300 focus:shadow-primary-2 focus:outline-none focus:ring-0 active:bg-primary-600 active:shadow-primary-2 motion-reduce:transition-none dark:shadow-black/30 dark:hover:shadow-dark-strong dark:focus:shadow-dark-strong dark:active:shadow-dark-strong"> Primary </button> <button type="button" class="inline-block rounded-full bg-primary-
🌐
Aceternity UI
ui.aceternity.com › components › tailwind css buttons
Tailwind CSS buttons | Aceternity UI Components
"use client"; import React from "react"; import { IconClipboard } from "@tabler/icons-react"; import { cn } from "@/lib/utils"; export const ButtonsCard = ({ children, className, onClick, }: { children?: React.ReactNode; className?: string; onClick?: () => void; }) => { return ( <div onClick={onClick} className={cn( "h-60 w-full bg-white rounded-xl border border-neutral-100 dark:bg-black dark:border-white/[0.2] hover:border-neutral-200 group/btn overflow-hidden relative flex items-center justify-center", className )} > <div className="absolute inset-0 dark:bg-dot-white/[0.1] bg-dot-black/[0.1]" /> <IconClipboard className="absolute top-2 right-2 text-neutral-300 group-hover/btn:block hidden h-4 w-4 transition duration-200" /> <div className="relative z-40">{children}</div> </div> ); };
🌐
Material Tailwind
material-tailwind.com › docs › react › button
Tailwind CSS Button for React - Material Tailwind
import type { ButtonProps } from "@material-tailwind/react"; type variant = "filled" | "outlined" | "gradient" | "text"; ... type color = | "white" | "black" | "blue-gray" | "gray" | "brown" | "deep-orange" | "orange" | "amber" | "yellow" | "lime" | "light-green" | "green" | "teal" | "cyan" | "light-blue" | "blue" | "indigo" | "deep-purple" | "purple" | "pink" | "red"; Learn how to customize the theme and styles for button component, the theme object for button component has three main objects:
🌐
Tailwind Flex
tailwindflex.com › tag › button
203+ Free Button examples in Tailwind CSS
Pair of active primary and secondary buttons. Elevated buttons w/ border bottom ... Tailwindflex.com is a free Tailwind CSS examples library.
🌐
PrebuiltUI
prebuiltui.com › home › components › buttons
Tailwind CSS Buttons Components - PrebuiltUI
These Button UI components bring flexibility and style to your interface. Designed in a variety of sizes and states they are perfect for handling user interactions such as submitting forms triggering actions and navigating content across your application. ... BreadcrumbsEnhance your website's navigation with these Tailwind CSS Breadcrumbs UI components.
🌐
Netlify
tailwindcss-base-buttons.netlify.app
Documentation - Tailwind CSS Base Buttons
When you want to add multiple styles using a callback is more suited. You can access the colorConfig and options object inside your callback. module.exports = { // ... plugins: [ require('tailwindcss-base-buttons')({ baseClass: '.btn' },(colorConfig, options) => { let additionalStyles = {}; Object.entries(colorConfig, config => { let [key, properties] = config; Object.assign(additionalStyles, { [`${options.baseClass}-sample-${key}`]: { backgroundColor: properties['background'], width: '200px' } }) }); return additionalStyles; }) ] }