mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 15:43:20 +00:00
22 lines
518 B
HTML
22 lines
518 B
HTML
![]() |
<!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>
|