1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-10-17 19:02:07 +00:00
serenity/Tests/LibWeb/Ref/item-with-negative-z-index.html

13 lines
315 B
HTML

<!doctype html><style type="text/css">
* { outline: 1px solid black; }
body { display: grid; }
.foo {
grid-area: 1 / 1 / auto / auto;
background: pink;
}
.bar {
grid-area: 1 / 1 / auto / auto;
background: orange;
z-index: -1;
}
</style><body><div class="foo">foo</div><div class="bar">bar</div>