Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/filter-effects/filter-with-mix-blend-mode.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<title>CSS Filters: filter and mix-blend mode on the same element</title>
<link rel="match" href="reference/filter-with-mix-blend-mode-ref.html">
<style>
html {
background: green;
}
div {
width: 200px;
height: 200px;
background: red;
filter: grayscale();
mix-blend-mode: screen;
}
</style>
</head>
<body>
<div></div>
</body>
</html>