Placeholder Opacity
v1.4.0+
Utilities for controlling the opacity of an element’s placeholder color.
Control the opacity of an element’s placeholder color using the utilities.
<input class="placeholder-opacity-75 md:placeholder-opacity-50 placeholder-gray-500" placeholder="jane@example.com">
For more information about Tailwind’s responsive design features, check out the Responsive Design documentation.
To customize the opacity values for all opacity-related utilities at once, use the opacity
section of your tailwind.config.js
theme configuration:
If you want to customize only the placeholder opacity utilities, use the placeholderOpacity
section:
// tailwind.config.js
theme: {
placeholderOpacity: {
+ '10': '0.1',
+ '20': '0.2',
+ '95': '0.95',
}
}
}
Learn more about customizing the default theme in the .
You can control which variants are generated for the placeholder opacity utilities by modifying the placeholderOpacity
property in the variants
section of your file.
For example, this config will also generate hover and active variants:
Disabling
If you don’t plan to use the placeholder opacity utilities in your project, you can disable them entirely by setting the placeholderOpacity
property to false
in the corePlugins
section of your config file:
// tailwind.config.js
module.exports = {
corePlugins: {
// ...
+ placeholderOpacity: false,
}
}