Newer
Older
minerva / Tests / LibWeb / Ref / item-with-negative-z-index.html
@minerva minerva on 13 Jul 388 bytes Initial commit
<!doctype html>
<link rel="match" href="reference/item-with-negative-z-index-ref.html" />
<style type="text/css">
body { display: grid; }
.foo {
    outline: 1px solid black;
    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>