Build the frosted-glass look: adjust the backdrop blur, tint colour, transparency and corner radius, preview it over a colourful background, and copy the CSS (including the `-webkit-` prefix). All in your browser.
CSS Glassmorphism Generator is a quick, no-nonsense developer utility that runs entirely client-side, so your code and data never leave your machine.
Some browsers still need the prefixed property, so both are included for wider support.
backdrop-filter blurs what is behind the element, so it needs a background behind it to show.
No — everything runs locally.
background: rgba(255, 255, 255, 0.2);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.35);
border-radius: 16px;