Divide Color
Usageโ
Please refer to the
documentation on the Tailwind CSS website
caution
Divide Color
was temporary removed in v4
. We are working to re-add it in the future.
Compatibilityโ
Class | Support |
---|---|
divide-{n} | ๐ Web only |
divide-[n] | ๐ Web only |
divide-inherit | ๐ Web only |
divide-current | ๐ Web only |
Legend
divideOpacity (native only)
For performance reasons, NativeWind renders with the corePlugin
divideOpacity
disabled. This plugin allows the divide color to dynamically change it's opacity via the --tw-divide-opacity
variable. Instead, the opacity is set as a static value in the color
property.
If you need to use this feature, you can enable it by adding the following to your tailwind.config.js
file:
module.exports = {
/* ... */
corePlugin: {
divideOpacity: true,
},
};