1. tailwind
  2. forms

Forms and Inputs

Various form and input styles.

Prerequisites

Skeleton relies on the official Tailwind Forms plugin to normalize form styling. This implements rudamentary base styles, while also making it easier to customize each element. If you plan to implement forms in your project, make sure this plugin is installed.

Plugin Doc

Video Guide

Install the @tailwindcss/forms package.

Terminal window
npm install -D @tailwindcss/forms

Implement the plugin in your tailwind.config, ideally before the Skeleton plugin.

import forms from '@tailwindcss/forms';
export default {
plugins: [
forms,
// skeleton()
]
};

Select

Checkboxes

Radio Groups

Other Inputs

Groups

https://