Glassmorphism Generator

Create frosted glass UI effects with backdrop-filter blur, transparency and border control.

Glass Properties
Live Preview

Glass Card

Beautiful frosted glass UI effect using CSS backdrop-filter.

Generated CSS
.glass {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
}

Browser Support Notes

  • backdrop-filter requires a transparent or semi-transparent background to work.
  • Safari requires the -webkit-backdrop-filter prefix.
  • Ensure the element's parent has overflow: hidden if clipping is needed.
  • Works best when placed over a colorful or image background.