blob: 066b7b7499edbd12c8d3166648a4edb3b2d17660 [file] [log] [blame]
<!DOCTYPE html>
<title>Fixed position elements do establish stacking contexts with setting enabled</title>
<style>
div {
height: 100px;
width: 100px;
margin: 0;
padding: 0;
top: 0;
left: 0;
position:fixed;
}
.green {
position:fixed;
background: green;
z-index: 1;
}
.red {
position:fixed;
background: red;
z-index: 2;
}
</style>
<div class="green"></div>
<div class="container">
<div class="green"></div>
<div class="red"></div>
</div>