gecko-dev/layout/reftests/css-blending/mix-blend-mode-culling-1207...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 строки
360 B
HTML
Исходник Обычный вид История

<!DOCTYPE HTML>
<head>
<style>
.parent {
width: 200px;
height: 200px;
isolation: isolate;
background: orange;
}
.child {
width: 200px;
height: 200px;
mix-blend-mode: screen;
background: green;
}
</style>
</head>
<body>
<div class="parent">
<div class="child">
</div>
</div>
</body>