VOOZH about

URL: https://www.geeksforgeeks.org/css/tailwind-css-backdrop-filter/

⇱ Tailwind CSS Backdrop Filter - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Tailwind CSS Backdrop Filter

Last Updated : 23 Jul, 2025

Tailwind CSS backdrop filter is used to enable the backdrop of any filter which is used by the filter. It works like the filter class but in opposites direction. In filter class, we have seen that, if we want to use any effect on any element like blur, contrast, brightness, etc then we have to use a filter before that effect. Similarly to disable the effect we have to use backdrop-blur or backdrop-contrast with the backdrop-filter.

Backdrop Filter Classes:

  • backdrop-filter: This class is used to enable backdrop filters
  • backdrop-filter-none: This class is used to remove filters.

Syntax:

<element class="backdrop-filter | backdrop-filter-none">..</element>

Example:

Output:

👁 Image
Comment