Placeholder Opacity

    Control the opacity of an element’s placeholder color using the utilities.

    To control an element’s placeholder color opacity at a specific breakpoint, add a {screen}: prefix to any existing placeholder color opacity utility. For example, use md:placeholder-opacity-50 to apply the placeholder-opacity-50 utility at only medium screen sizes and above.

    1. <input class="placeholder-gray-500 placeholder-opacity-75 md:placeholder-opacity-50 ..." placeholder="jane@example.com">

    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:

    1. // tailwind.config.js
    2. theme: {
    3. placeholderOpacity: {
    4. + '10': '0.1',
    5. + '20': '0.2',
    6. + '95': '0.95',
    7. }
    8. }
    9. }

    Learn more about customizing the default theme in the theme customization documentation.

    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:

    1. // tailwind.config.js
    2. module.exports = {
    3. corePlugins: {
    4. // ...
    5. + placeholderOpacity: false,
    6. }
    7. }

    Edit this page on GitHub