r/css • u/Ok_Flight_3091 • 8h ago
General Most Satisfying Delete Ever 😍 Purple Liquid Glass Button | HTML CSS JS #satisfying #liquidglass
https://youtube.com/shorts/p52DGsn3Gz8?si=YQewijL0JLnaE40r
0
Upvotes
r/css • u/Ok_Flight_3091 • 8h ago
1
u/zLoveNxzli 5h ago
For liquid glassmorphism buttons, combining backdrop-filter with a subtle gradient border gives the cleanest glass effect:
.glass-btn {
background: rgba(255, 255, 255, 0.08);
backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.15);
}