<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>style_stacking_context_nested_context_atomicity</title>
<link rel="stylesheet" href="../shared.css" />
</head>
<body style="width: 1200px; height: 630px">
<div style="display: flex; width: 100%; height: 100%; background-color: rgb(255, 255, 255)">
<div
style="
display: flex;
position: absolute;
z-index: 1;
width: 460px;
height: 300px;
top: 130px;
left: 160px;
background-color: rgb(255, 128, 128);
"
>
<div
style="
display: flex;
position: absolute;
z-index: 9999;
width: 220px;
height: 220px;
top: 30px;
left: 260px;
background-color: rgb(255, 255, 0);
"
></div>
</div>
<div
style="
display: flex;
position: absolute;
z-index: 2;
width: 340px;
height: 340px;
top: 200px;
left: 200px;
background-color: rgb(128, 128, 255);
"
></div>
</div>
</body>
</html>