CSS Glassmorphism Generator

Create stunning glassmorphism effects with backdrop blur. Generate modern frosted glass UI designs with CSS.

Upload a background image to see the frosted glass effect

Glassmorphism

Frosted glass effect with backdrop blur

.glassmorphism {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

Browser Compatibility

The backdrop-filter property is supported in modern browsers. Safari requires the -webkit- prefix. Consider providing a fallback for older browsers.

CSS Glassmorphism Generator

Design trendy glassmorphism (frosted glass) effects for modern web interfaces. Create beautiful transparent, blurred backgrounds with customizable properties.

What is Glassmorphism?

Glassmorphism is a UI design trend that creates a frosted glass effect using background blur, transparency, and subtle borders. It's popular in modern web and app design for creating elegant, depth-rich interfaces.

Customizable Properties

  • Background transparency
  • Backdrop blur intensity
  • Border style and color
  • Shadow depth
  • Background color

Use Cases

  • Modal dialogs
  • Navigation bars
  • Card components
  • Overlay menus
  • Hero sections
From the blog

CSS glassmorphism: the complete implementation guide

The four CSS properties that make it work, browser support, and the WCAG contrast trap to avoid.

Related Tools

Advertisement
Advertisement

Comments

Sign in or create an account to leave a comment.

No comments yet

Be the first to share your thoughts!