Glassmorphic CSS Generator

Create stunning frosted-glass UI elements with backdrop-filter. Click to adjust and copy the CSS.

⚙️ Controls

12px
180%
0.20
0.30
16px
0.15

Glass Card Preview

This is how your glass element looks in real-time.

Generated CSS
/* Glassmorphism Card */
.glass-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  color: #ffffff;
  padding: 2rem;
}