mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-15 21:41:58 +00:00
18 lines
412 B
HTML
18 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>
|