summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-transforms/scrollable-scroll-3d-transform-z.html
blob: 0f7ee00cf0d17d55be9565c3b7a2b69b263d6317 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!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-scroll-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: scroll;
}
</style>
<div id="container">
  <div id="scroller">
    <div style="height: 300px"></div>
  </div>
</div>