1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 01:18:12 +00:00
serenity/Tests/LibWeb/Layout/input/block-and-inline/relpos-block.html
Andreas Kling c83ae729d2 LibWeb: Resolve used insets for floating elements
This makes the game carousel work on https://null.com/ :^)
2023-07-04 06:43:53 +02:00

16 lines
No EOL
337 B
HTML

<!DOCTYPE html><style>
* { border: 2px solid black; }
body { width: 600px; }
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>