VOOZH about

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

⇱ Tailwind CSS Backdrop Blur - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Tailwind CSS Backdrop Blur

Last Updated : 23 Jul, 2025

The backdrop blur classes is used to apply a blurred effect filter to an element. Tailwind CSS newly added feature blur in 2.1 version.

Backdrop Blur Classes:

  • backdrop-blur-0: This class is equivalent to no blur effect on element as blur(0) in CSS.
  • backdrop-blur-sm: This class is equivalent to small blur effect on element as blur(4px) in CSS.
  • backdrop-blur: This class is equivalent to normal blur effect on element as blur(8px) in CSS.
  • backdrop-blur-md: This class is equivalent to medium blur effect on element as blur(12px) in CSS.
  • backdrop-blur-lg: This class is equivalent to large blur effect on element as blur(16px) in CSS.
  • backdrop-blur-xl: This class is equivalent to extra large blur effect on element as blur(24px) in CSS.
  • backdrop-blur-2xl: This class is equivalent to double extra large blur effect on element as blur(40px) in CSS.
  • backdrop-blur-3xl: This class is equivalent to triple extra large blur effect on element as blur(64px) in CSS.

Syntax:

<element class="filter backdrop-blur-{amount}">..</element>

Example:

Output:

👁 Image
Comment