mirror of
https://github.com/servo/servo
synced 2026-05-11 17:37:21 +02:00
18 lines
312 B
HTML
18 lines
312 B
HTML
<!DOCTYPE html>
|
|
<title>Reference for position: sticky should create a stacking context</title>
|
|
|
|
<style>
|
|
.indicator {
|
|
background-color: green;
|
|
}
|
|
|
|
.box {
|
|
width: 200px;
|
|
height: 200px;
|
|
}
|
|
</style>
|
|
|
|
<div class="indicator box"></div>
|
|
|
|
<div>You should see a single green box above. No red should be visible.</div>
|