ladybird/Tests/LibWeb/Ref/input/position-fixed-and-absolute-nested-static-position.html

22 lines
518 B
HTML
Raw Normal View History

<!DOCTYPE html>
<link rel="match" href="../expected/position-absolute-fixed-nested-static-position.html" />
<style>
div {
height: 100px;
width: 100px;
}
.absolute { position: absolute; }
.fixed { position: fixed; }
.outside { background-color: red; }
.inside { background-color: orange; }
.deep { background-color: yellow; }
.deeper { background-color: green; }
</style>
<div class="outside">
<div class="absolute inside">
<div class="deep">
<div class="fixed deeper"></div>
</div>
</div>
</div>