blob: 7c17263755303288555a7ba36a46ea117f24c49b [file] [log] [blame]
<!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-lr;
width: 300px;
height: 160px;
border: 2px solid black;
margin: 10px;
position: relative;
}
.box {
width: 100px;
height: 100px;
margin: 5px;
}
.sticky {
position: absolute;
background-color: green;
}
</style>
</head>
<body>
<div class="group" style="left: -200px">
<div class="container">Before
<div class="box"></div> <!-- placeholder -->
<div class="sticky box" style="right: 0px;"></div>After
</div>
</div>
<div class="group" style="left: 300px">
<div class="container">Before
<div class="sticky box" style="position: relative;"></div>After
</div>
</div>
<div class="group" style="left: 700px">
<div class="container">Before
<div class="box"></div> <!-- placeholder -->
<div class="sticky box" style="left: 0px;"></div>After
</div>
</div>
</body>
</html>