Create OS-style backgrounds with backdrop-filter

Translucence, blurring, and other effects are useful ways of creating depth while keeping the context of the background content. They support a host of use cases such as frosted glass, video overlays, translucent navigation headers, inappropriate image…

Translucence, blurring, and other effects are useful ways of creating depth while keeping the context of the background content. They support a host of use cases such as frosted glass, video overlays, translucent navigation headers, inappropriate image censoring, image loading, and so on. You may recognize these effects from two popular operating systems: Windows 10 and iOS.

An example of a frosted glass effect.
An example of a frosted glass effect. Source.

Historically, these techniques were difficult to implement on the web, requiring less than perfect hacks or workarounds. In recent years both Safari and Edge have provided these capabilities through the background-filter (and alternatively, the -webkit-backdrop-filter) property, which dynamically blends foreground and background colors based on filter functions. Now Chrome supports background-filter, starting in version 76.

A demonstration of the filter functions for backdrop-filter. Try the example on CodePen.

Basics

  • The backdrop-filter property applies one or more filters to an element, changing the appearance of anything behind the element.
  • The overlaying element must be at least partially transparent.
  • The overlaying element will get a new stacking context.

Caution:
backdrop-filter may harm performance. Test it before deploying.

CSS backdrop-filter applies one or more effects to an element that is translucent or transparent. To understand that, consider the images below.

No foreground transparency

A triangle superimposed on a circle. The circle can't be seen through the triangle.

.frosty-glass-pane {
backdrop-filter: blur(2px);
}

Foreground transparency

A triangle superimposed on a circle. The triangle is translucent, allowing the circle to be seen through it.

.frosty-glass-pane {
opacity: .9;
backdrop-filter: blur(2px);
}

The image on the left shows how overlapping elements would be rendered if backdrop-filter were not used or supported. The image on the right applies a blurring effect using backdrop-filter. Notice that it uses opacity in addition to backdrop-filter. Without opacity, there would be nothing to apply blurring to. It almost goes without saying that if opacity is set to 1 (fully opaque) there will be no effect on the background.

The backdrop-filter property is like CSS filters in that all your favorite filter functions are supported: blur(), brightness(), contrast(), opacity(), drop-shadow(), and so on. It also supports the url() function if you want to use an external image as the filter, as well as the keywords none, inherit, initial, and unset. There are explanations for all of this on MDN, including descriptions of syntax, filters, and values.

When backdrop-filter is set to anything other than none, the browser creates a new stacking context. A containing block may also be created, but only if the element has absolute and fixed position descendants.

You can combine filters for rich and clever effects, or use just one filter for more subtle or precise effects. You can even combine them with SVG filters.

Feature detection and fallback

As with many features of the modern web, you’ll want to know whether the user’s browser supports backdrop-filter before using it. Do this with @supports(). For performance reasons, fall back to an image instead of a polyfill when backdrop-image isn’t supported. The example below shows this.

@supports (backdrop-filter: none) {
.background {
backdrop-filter: blur(10px);
}
}

@supports not (backdrop-filter: none) {
.background {
background-image: blurred-hero.png;
}
}

Examples

Design techniques and styles previously reserved for operating systems are now performant and achievable with a single CSS declaration. Let’s look at some examples.

Single filter

In the following example, the frosted effect is achieved by combining color and blur. The blur is supplied by backdrop-filter, while the color comes from the element’s semi-transparent background color.

.blur-behind-me {
background-color: rgba(255, 255, 255, 0.3);
backdrop-filter: blur(.5rem);
}
Try this example for yourself in CodePen.

Multiple filters

Sometimes you’ll need multiple filters to achieve the desired effect. To do this, provide a list of filters separated by a space. For example:

.brighten-saturate-and-blur-behind-me {
backdrop-filter: brightness(150%) saturate(150%) blur(1rem);
}

In the following example, each of the four panes has a different combination of backdrop filters while the same set of shapes are animated behind them.

Try this example for yourself in CodePen.

Overlays

This example shows how to blur a semi-transparent background to make text readable while stylistically blending with a page’s background.

.modal {
backdrop-filter: blur(10px);
background-color: rgba(255, 255, 255, 0.5);
}
Try this example for yourself.

Text contrast on dynamic backgrounds

As stated earlier, backdrop-filter allows performant effects that would be difficult or impossible on the web. An example of this is changing a background in respone to an animation. In this example, backdrop-filter maintains the high contrast between the text and its background in spite of what’s going on behind the text. It starts with the default background color darkslategray and uses backdrop-filter to invert the colors after the transformation.

.container::before {
z-index: 1;
background-color: darkslategray;
filter: invert(1);
}

.container::after {
backdrop-filter: invert(1);
z-index: 3;
}
Try this example from Chen Hui Jing in Codrops.

Conclusion

More than 560 of you have upvoted the Chromium bug over the past few years, clearly marking this as a long awaited CSS feature. Chrome’s release of backdrop-filter in version 76 brings the web a step closer to truly OS-like UI presentation.

Additional resources


Print Share Comment Cite Upload Translate
APA
Adam Argyle | Sciencx (2024-03-28T15:56:39+00:00) » Create OS-style backgrounds with backdrop-filter. Retrieved from https://www.scien.cx/2019/07/26/create-os-style-backgrounds-with-backdrop-filter/.
MLA
" » Create OS-style backgrounds with backdrop-filter." Adam Argyle | Sciencx - Friday July 26, 2019, https://www.scien.cx/2019/07/26/create-os-style-backgrounds-with-backdrop-filter/
HARVARD
Adam Argyle | Sciencx Friday July 26, 2019 » Create OS-style backgrounds with backdrop-filter., viewed 2024-03-28T15:56:39+00:00,<https://www.scien.cx/2019/07/26/create-os-style-backgrounds-with-backdrop-filter/>
VANCOUVER
Adam Argyle | Sciencx - » Create OS-style backgrounds with backdrop-filter. [Internet]. [Accessed 2024-03-28T15:56:39+00:00]. Available from: https://www.scien.cx/2019/07/26/create-os-style-backgrounds-with-backdrop-filter/
CHICAGO
" » Create OS-style backgrounds with backdrop-filter." Adam Argyle | Sciencx - Accessed 2024-03-28T15:56:39+00:00. https://www.scien.cx/2019/07/26/create-os-style-backgrounds-with-backdrop-filter/
IEEE
" » Create OS-style backgrounds with backdrop-filter." Adam Argyle | Sciencx [Online]. Available: https://www.scien.cx/2019/07/26/create-os-style-backgrounds-with-backdrop-filter/. [Accessed: 2024-03-28T15:56:39+00:00]
rf:citation
» Create OS-style backgrounds with backdrop-filter | Adam Argyle | Sciencx | https://www.scien.cx/2019/07/26/create-os-style-backgrounds-with-backdrop-filter/ | 2024-03-28T15:56:39+00:00
https://github.com/addpipe/simple-recorderjs-demo