mirror of
https://github.com/servo/servo
synced 2026-05-10 17:12:23 +02:00
27 lines
625 B
HTML
27 lines
625 B
HTML
<!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="scrollable-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>
|