mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 00:25:12 +00:00
...traversal. We've already fixed step 3 and 9 to not filter out non-positioned stacking contexts, because modern CSS has more ways to create stacking context besides being positioned with z-index (like by using "transform", "filter" or "clip-path" properties). See following spec issue for more details https://github.com/w3c/csswg-drafts/issues/2717 Visual improvement on https://basecamp.com/
11 lines
184 B
HTML
11 lines
184 B
HTML
<!doctype html>
|
|
<style>
|
|
* { outline: 1px solid black; }
|
|
body { width: 300px; }
|
|
#orange {
|
|
background: orange;
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
</style><body><div id="orange">
|