Glassmorphism Effect Generator
Create stunning glass-like UI effects with backdrop-filter, blur and transparency.
① Adjust blur & opacity ② Pick glass color & border ③ Copy the CSS
Glassmorphism
backdrop-filter: blur(12px)
.glass {
background: rgba(255, 255, 255, 0.18);
backdrop-filter: blur(12px) saturate(180%);
-webkit-backdrop-filter: blur(12px) saturate(180%);
border: 1px solid rgba(255, 255, 255, 0.30);
border-radius: 16px;
}What is Glassmorphism?
Glassmorphism is a UI design trend that creates a frosted glass-like appearance using CSS backdrop-filter, semi-transparent backgrounds and subtle borders. The effect gives depth and hierarchy to interfaces while keeping them light and airy. Key CSS properties: backdrop-filter: blur(12px) saturate(180%) blurs and enhances the content behind the glass panel. background: rgba(255,255,255,0.18) sets the translucent fill. border: 1px solid rgba(255,255,255,0.3) adds the characteristic glass edge. Browser support requires -webkit-backdrop-filter for Safari. Always include a @supports fallback with a solid semi-opaque background for older browsers.