position-fixed-scroll-nested-fixed.html (758B)
1 <!DOCTYPE html> 2 <title>CSS Position: Nested position:fixed in a scrollable position:fixed</title> 3 <link rel="help" href="https://www.w3.org/TR/css-position-3/#fixed-position"> 4 <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=956203"> 5 <link rel="match" href="position-fixed-scroll-nested-fixed-ref.html"> 6 <meta name="assert" content="The nested position:fixed element should be above its parent, as if it was a sibling."> 7 <div id="outer" style="position: fixed; width: 100px; height: 100px; overflow: auto; background: red"> 8 <div style="position: fixed; width: 200px; height: 100px; background: green"></div> 9 <div style="height: 500px"></div> 10 </div> 11 <div style="height: 5000px"></div> 12 <script> 13 outer.scrollTop = 200; 14 </script>