Answers for "tailwind css prefix"

0

tailwind css prefix

//The prefix option allows you to add a custom prefix to all of Tailwind’s generated utility classes.
//This can be really useful when layering Tailwind on top of existing CSS where there might be naming conflicts.

//For example, you could add a tw- prefix by setting the prefix option like so:

module.exports = {
  prefix: 'tw-',
}
Posted by: Guest on May-01-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language