A plugin for Tailwind CSS to create
utility classes for hyphens
.
This plugin requires Tailwind CSS v1.x.
npm install --save-dev tailwindcss-hyphens
or
yarn add --dev tailwindcss-hyphens
In your tailwind.config.js:
module.exports = {
// …
plugins: [
// …
require("tailwindcss-hyphens")
// …
]
// …
};
By default, this plugin generates the following utilities:
.hyphens-none {
hyphens: none;
}
.hyphens-manual {
hyphens: manual;
}
.hyphens-auto {
hyphens: auto;
}
If you need a utility class for a non-standard value, you can customize this in tailwind.config.js:
module.exports = {
theme: {
// …
hyphens: {
"foo-bar": "foo-bar"
}
// …
}
// …
};
This would generate the following utility class:
.hyphens-foo-bar {
hyphens: foo-bar;
}