Newer
Older
minerva / Tests / LibWeb / Ref / reference / abspos-z-index-painting-order-ref.html
@minerva minerva on 13 Jul 344 bytes Initial commit
<!doctype html><html lang="en"><style>
* {
    font-size: 60px;
}
body {
    display: grid;
    grid-template-areas: "content";
}
.abspos {
    grid-area: content;
    background: gray;
    width: 100px;
    height: 100px;
}
.text {
    grid-area: content;
}
</style><body><div class="abspos"></div><div class="text">hello friends</div></body>