Answers for "tailwindcss forms plugin"

CSS
1

tailwindcss forms plugin

npm install -D @tailwindcss/forms

Then add the plugin to your tailwind.config.js file:

// tailwind.config.js
module.exports = {
  theme: {
    // ...
  },
  plugins: [
    require('@tailwindcss/forms'),
    // ...
  ],
}
Posted by: Guest on March-15-2022

Code answers related to "tailwindcss forms plugin"

Browse Popular Code Answers by Language