blob: 5d539f63cfe4c78ada7b4f133e4e7477e0584c7e [file] [log] [blame]
<!DOCTYPE html>
<link rel="author" title="Seokho Song" href="mailto:0xdevssh@gmail.com">
<link rel="help" href="https://www.w3.org/TR/css-transforms-2/#3d-transform-rendering/">
<link rel="match" href="scrolalble-hidden-3d-transform-z-ref.html">
<style>
#container {
width: 100px;
height: 100px;
background: green;
position: relative;
transform-style: preserve-3d;
}
#scroller {
width: 100px;
height: 100px;
background: red;
position: absolute;
transform: translateZ(-1px);
overflow-y: hidden;
}
</style>
<div id="container">
<div id="scroller">
<div style="height: 300px"></div>
</div>
</div>