Mix-blend-mode Property

Last updated: 2026-09-13

mix-blend-mode Mix-blend-mode Property

The mix-blend-mode property controls how an element's content blends its colors with the content beneath it (a background or adjacent elements), similar to layer blend modes in Photoshop. It lets text and images produce rich color compositing against a background, and is often used in posters, banners, and artistic page design.

Category
Initial Valuenormal
InheritedNo
Applies To
Animation Type
CSS VersionCSS3
StatusStandard

📝 Syntax

mix-blend-mode: normal | multiply | screen | overlay | darken | lighten | color-dodge | color-burn | hard-light | soft-light | difference | exclusion | hue | saturation | color | luminosity;

⚙️ Values

ValueTypeDescription
normal | multiply | screen | overlay | darken | lighten | color-dodge | color-burn | hard-light | soft-light | difference | exclusion | hue | saturation | color | luminosityKeywordThe blend mode

▶ Example

Edit the code below and see the live result in the playground:

🌐 Browser Support

Browser ChromeChrome EdgeEdge FirefoxFirefox SafariSafari OperaOpera
mix-blend-mode v30 v12 v30 v9 v16
Supported in all major browsers
Tip: multiply makes white transparent, so white logos fuse into a colored background; screen does the opposite, making black transparent.
Important: Blending depends on content beneath the element. If the element sits inside its own stacking context with nothing beneath it, no blending effect is visible.

❓ FAQ

QWhat is the difference between mix-blend-mode and background-blend-mode?
Amix-blend-mode blends an element's content (including its background) with everything beneath it — a cross-element blend. background-blend-mode only blends multiple background layers within the same element. Use mix-blend-mode to fuse text with a background image, and background-blend-mode to blend several background images with each other.
QWhy is my mix-blend-mode not showing any visual effect in CSS?
ACommon causes: there is nothing blendable beneath the element; the element itself or a parent creates its own stacking context, limiting the blend scope; or the element is fully transparent or completely covered by content below. Add isolation: isolate to the parent to define the isolation scope explicitly, and check that blendable content really exists underneath.
QWhen should I use the multiply and screen blend modes in CSS?
Amultiply is friendly to white — white stays unchanged when blended — so it suits watermarking a white logo over a colored background. screen is the opposite: black has no effect, so it suits overlaying dark content on a bright background. Other common ones: overlay is good for blending text with images, and difference can create artistic color-inversion effects.
QHow good is browser support for mix-blend-mode, especially on mobile?
AModern desktop browsers (Chrome, Firefox, Safari, Edge) have full support since around 2015, but older versions and some WebView engines differ, and the blend may be missing or inconsistent. On mobile, iOS Safari and Chrome for Android both support it. For critical visuals, provide a fallback that does not depend on blending.

📚 Related Tutorials

Web-Tutorial.com

Web-Tutorial Tech Team

A team of developers maintaining programming tutorials. Each tutorial is written and reviewed by developers with expertise in that field. We work to keep our content accurate and reliable — if you spot an issue, please let us know.

100%

🙏 帮我们做得更好

我们是刚上线的编程教程站,几个人的小团队,精力有限。页面虽经检查,难免还有疏漏——链接失效、排版错乱、内容有误、语言生硬……

如果您发现了,麻烦告诉我们,我们会在收到反馈后第一时间进行修复,再次感谢您的光临 🙏