SShortSingh.
Back to feed

Six CSS and SVG techniques to recreate Apple's Liquid Glass effect on the web

0
·1 views

Apple introduced its Liquid Glass visual design across iOS 26 and macOS, prompting web developers to replicate the effect using CSS and SVG. A developer spent several weeks researching the technique and found that most online guides rely solely on backdrop-filter blur, which produces a dull, washed-out result rather than genuine glass. The key missing ingredients include boosting color saturation alongside the blur, adding a subtle background tint, and using mask-image to create soft, feathered edges. More advanced approaches involve stacking multiple blur layers to simulate gradient blur, since CSS does not natively support it. The developer documented six techniques in total, ordered by browser support, along with common pitfalls such as ancestor overflow clipping and Safari prefix requirements.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

Full-Stack developer builds and deploys personal portfolio for free on Vercel

A Full-Stack and Mobile developer has shared the process behind building her professional portfolio website. The project was built using React, HTML5, CSS3, and JavaScript, with Vercel handling free hosting and deployment. The site was connected to GitHub to enable continuous deployment, automatically publishing updates with every code change. Design decisions prioritized user experience, ensuring recruiters and clients can quickly browse key projects on both mobile and desktop screens.

0
ProgrammingDEV Community ·

AI developer argues continuity, not intelligence, is the core unsolved problem

A developer building an AI operating layer concluded that the real limitation of current AI systems is not intelligence but continuity of understanding across conversations. Each new AI session starts from scratch, forcing users to rebuild context repeatedly rather than carrying forward accumulated knowledge. This insight shifted the developer's focus from memory storage to what they call 'governed context' and project reconstruction frameworks. The approach involves architectural boundaries designed to preserve understanding across interactions, not just retain raw information. The developer acknowledges the work is still evolving but believes ensuring understanding persists across projects is the more meaningful long-term challenge.

0
ProgrammingDEV Community ·

Engineer Builds Auto-Remediation Pipeline That Reverts Unauthorized AWS Tag Changes

A developer built an automated drift detection and remediation system on AWS that detects and reverses infrastructure changes made outside of Terraform. The pipeline uses CodeBuild, SNS, and Lambda to detect configuration drift, classify its severity, and trigger a Terraform apply only for low-risk, in-place updates. A custom classifier was updated to factor in both resource type and action type, so that updates on medium-risk resources like EC2 instances are treated as low severity, while deletions and replacements escalate to high. Deletions are deliberately excluded from auto-remediation and routed to manual review, ensuring human oversight for potentially intentional removals. Detection and remediation run as separate CodeBuild projects with distinct IAM roles, keeping the read-only drift detector isolated from any write operations.

0
ProgrammingDEV Community ·

Google Flow, Kling AI, and Hailuo Free Tiers Compared: What You Actually Get

A hands-on comparison of the free tiers of three AI video tools — Google Flow (Veo 3.1), Kling AI, and Hailuo/MiniMax — reveals significant limitations for creators seeking commercial use. Google Flow offers roughly 50 non-cumulative daily credits but lacks a clear policy on whether free-tier output can be used on monetized YouTube channels. Kling AI provides the most generous daily credits and strong motion quality, but explicitly prohibits commercial use on its free tier. Hailuo grants a one-time bonus of 200 credits for new users rather than a daily refresh, and similarly bans commercial use at the free level. All three tools display visible watermarks on free-tier outputs, and creators are advised to review each platform's current terms of service directly before building any monetized workflow around them.

Six CSS and SVG techniques to recreate Apple's Liquid Glass effect on the web · ShortSingh