Utilities for applying backdrop opacity filters to an element.
Use the backdrop-opacity-{amount}
utilities alongside the backdrop-filter
utility to control the opacity of other backdrop filters applied to an element.
<div class="backdrop-filter backdrop-opacity-80 ...">
<!-- ... -->
</div>
To control an element’s backdrop opacity at a specific breakpoint, add a {screen}:
prefix to any existing backdrop opacity utility. For example, use md:backdrop-opacity-lg
to apply the backdrop-opacity-lg
utility at only medium screen sizes and above.
<div class="backdrop-filter backdrop-opacity-sm md:backdrop-opacity-lg ...">
<!-- ... -->
</div>
For more information about Tailwind’s responsive design features, check out the Responsive Design documentation.
You can customize which backdrop-opacity
utilities are generated using the backdropOpacity
key in the theme
section of your tailwind.config.js
file.
// tailwind.config.js
module.exports = {
theme: {
+ extend: {
+ backdropOpacity: {
+ 15: '.15',
+ }
+ }
}
}
Learn more about customizing the default theme in the theme customization documentation.
By default, only responsive variants are generated for backdrop opacity utilities.
You can control which variants are generated for the backdrop opacity utilities by modifying the backdropOpacity
property in the variants
section of your tailwind.config.js
file.
For example, this config will also generate hover and focus variants:
// tailwind.config.js
module.exports = {
variants: {
extend: {
// ...
+ backdropOpacity: ['hover', 'focus'],
}
}
}
If you don't plan to use the backdrop opacity utilities in your project, you can disable them entirely by setting the backdropOpacity
property to false
in the corePlugins
section of your config file:
// tailwind.config.js
module.exports = {
corePlugins: {
// ...
+ backdropOpacity: false,
}
}