1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 22:48:11 +00:00
serenity/Tests/LibWeb/Layout/input/flex/relpos-flex-item.html
2023-07-04 06:43:53 +02:00

19 lines
No EOL
362 B
HTML

<!DOCTYPE html><style>
* { border: 2px solid black; }
body {
width: 600px;
display: flex;
}
div {
width: 200px;
position: relative;
}
.athena {
background: green;
top: 4px;
left: -200px;
}
.exekiller {
background: red;
}
</style><body><div class="exekiller">exekiller</div><div class="athena">athena</div></body>