ladybird/Tests/LibWeb/Layout/input/abspos-box-with-block-level-sibling.html

16 lines
280 B
HTML

<!DOCTYPE html><style>
* {
border: solid 5px black;
}
.static {
height: 200px;
width: 200px;
background: green;
}
.absolute {
position: absolute;
height: 200px;
width: 100px;
background: blue;
}
</style><div class="static"></div><div class="absolute"></div></div>