blob: d8b72346c0b79fa90d8ab763a9a2ddffcdf15430 [file] [log] [blame]
<!DOCTYPE html>
<title>CSS Backdrop Filters Animation: Saturate</title>
<link rel="author" title="Mason Freed" href="mailto:masonfreed@chromium.org">
<style>
.square {
position: absolute;
width: 100px;
height: 100px;
top: 100px;
left: 100px;
background: #f4fbff;
filter: saturate(2500%);
}
.filt {
position: absolute;
width: 200px;
height: 200px;
top: 50px;
left: 50px;
background: white;
filter: saturate(2500%);
}
.greenbox {
position: absolute;
width: 50px;
height: 50px;
top: 125px;
left: 125px;
background: green;
}
</style>
<p>You should see a light-blue rectangle with a green box. Neither cyan nor white.</p>
<div class="filt"></div>
<div class="square"></div>
<div class="greenbox"></div>