| <!DOCTYPE html> |
| |
| <html> |
| <head> |
| <style> |
| body { |
| margin: 0; |
| width: 2000px; |
| overflow: hidden; /* hide scrollbars */ |
| } |
| |
| .group { |
| position: relative; |
| width: 500px; |
| height: 160px; |
| } |
| |
| .container { |
| -webkit-writing-mode: vertical-rl; |
| width: 300px; |
| height: 160px; |
| border: 2px solid black; |
| margin: 10px; |
| } |
| |
| .box { |
| width: 200px; |
| height: 180px; |
| } |
| |
| .sticky { |
| position: sticky; |
| background-color: green; |
| width: 100px; |
| height: 100px; |
| left: 20px; |
| right: 20px; |
| margin: 5px; |
| } |
| </style> |
| <script> |
| function doTest() |
| { |
| window.scrollTo(100, 0); |
| } |
| window.addEventListener('load', doTest, false); |
| </script> |
| </head> |
| <body> |
| <div class="group" style="left: -100px"> |
| <div class="container">Before |
| <div class="sticky box"></div>After |
| </div> |
| </div> |
| |
| <div class="group" style="left: 400px"> |
| <div class="container">Before |
| <div class="sticky box"></div>After |
| </div> |
| </div> |
| |
| <div class="group" style="left: 800px"> |
| <div class="container">Before |
| <div class="sticky box"></div>After |
| </div> |
| </div> |
| </body> |
| </html> |