Sign In

Cross-Platform CSS Glassmorphism Generator

Visually generate frosted glass and blur effects and export code for CSS.

Cross-Platform Glassmorphism

Preview Canvas
.glass {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

Glass Properties

16px
20%
30%
16px

The Ultimate CSS Glassmorphism Generator

Glassmorphism is a UI design trend that emphasizes light or dark objects placed on top of vibrant backgrounds. The core feature of this trend is a frosted-glass effect (background blur) allowing the background to bleed through the elements. While achieving this in CSS is relatively straightforward using backdrop-filter, native frameworks handle this entirely differently. This generator translates the visual glass properties into production-ready CSS code.

Standard CSS Glassmorphism

The CSS implementation of Glassmorphism relies on the backdrop-filter property. This property lets you apply graphical effects such as blurring or color shifting to the area behind an element. Because it applies to everything behind the element, you must make the element itself semi-transparent (e.g., using rgba()) to see the effect. We also include the -webkit-backdrop-filter prefix to ensure maximum browser compatibility.

Related Tools