Problem: Frosted glass surface.
Solution#
<div class="glass p-6 rounded-2xl">…</div>
<!-- or manually: -->
<div class="backdrop-blur-md bg-white/60 border border-white/40 p-6 rounded-2xl">…</div>Why this works#
The .glass component is exactly backdrop-blur + translucent bg + border.
Variants#
- Responsive: add screen prefixes to the core classes
- Dark: pair each color utility with its dark: twin
- Animated: add
transition+ a state variant for motion
Related recipes#
cookbook/index|Cookbook index · utilities/index|Utilities reference · patterns/index|Layout patterns
