1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 09:27:35 +00:00

LibWeb: Resolve used insets for grid items

This commit is contained in:
Andreas Kling 2023-07-03 20:35:39 +02:00
parent 03ec17fd37
commit e7e454f1d6
3 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,19 @@
<!DOCTYPE html><style>
* { border: 2px solid black; }
body {
width: 600px;
display: grid;
}
div {
width: 200px;
position: relative;
}
.athena {
background: green;
top: -10px;
left: 10px;
}
.exekiller {
background: red;
}
</style><body><div class="exekiller">exekiller</div><div class="athena">athena</div></body>