mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 15:43:20 +00:00
19 lines
412 B
HTML
19 lines
412 B
HTML
![]() |
<!DOCTYPE html>
|
||
|
<link rel="match" href="../expected/css-isolation.html" />
|
||
|
<style>
|
||
|
.outer {
|
||
|
isolation:isolate;
|
||
|
position: absolute;
|
||
|
}
|
||
|
.inner {
|
||
|
width: 100px;
|
||
|
height: 100px;
|
||
|
}
|
||
|
</style>
|
||
|
<div class="outer">
|
||
|
<div class="inner" style="background-color:red; position:relative; z-index:1;"></div>
|
||
|
</div>
|
||
|
<div class="outer">
|
||
|
<div class="inner" style="background-color:green;"></div>
|
||
|
</div>
|