<div class="g-wrap">
<div class="g-scroll">
<div class="g-pesudo"></div>
<div class="g-content">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Dolorum quis ipsum officiis placeat ipsa sit ad incidunt similique, consequuntur earum architecto recusandae veritatis et illo, illum quae nulla minus rerum?
</div>
</div>
</div>
<p class="tips">Try scrolling down</p>
xxxxxxxxxx
html, body {
width: 100%;
height: 100%;
}
body {
display: flex;
line-height: 1.5;
}
.g-wrap {
position: relative;
margin: auto;
width: 400px;
height: 200px;
cursor: pointer;
// border: 1px solid #000;
box-sizing: border-box;
}
.g-scroll {
position: absolute;
left: -200px;
width: 200px;
height: 400px;
border: 1px solid #f00;
box-sizing: border-box;
transform-origin: 100% 0;
transform: rotate(-90deg);
overflow: scroll;
overflow-x: hidden;
}
.g-pesudo {
width: 200px;
height: 800px;
background: linear-gradient(rgba(122, 122, 50, .3), rgba(20, 200, 150, .3));
}
.g-content {
position: absolute;
top: 0;
left: 200px;
width: 800px;
height: 200px;
padding: 10px;
box-sizing: border-box;
transform-origin: 0 0;
box-sizing: border-box;
transform: rotate(90deg);
}
.tips {
position: fixed;
top: 20px;
left: 20px;
}
/* hide scrollbar */
::scrollbar {
width: 1px;
height: 1px;
}
::scrollbar-button {
width: 1px;
height: 1px;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.