OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <style> | 3 <style> |
4 #outer { | 4 #outer { |
5 position: absolute; | 5 position: absolute; |
6 top: 0px; | 6 top: 0px; |
7 left: 0px; | 7 left: 0px; |
8 height: 300px; | 8 height: 300px; |
9 width: 300px; | 9 width: 300px; |
10 z-index: 1; | 10 z-index: 1; |
11 overflow: auto; | 11 overflow: auto; |
12 background-color: green; | 12 background-color: green; |
13 } | 13 } |
14 | 14 |
15 #inner { | 15 #inner { |
16 -webkit-transform: translateZ(0); | 16 transform: translateZ(0); |
17 background-color: blue; | 17 background-color: blue; |
18 } | 18 } |
19 | 19 |
20 #overlap { | 20 #overlap { |
21 width: 500px; | 21 width: 500px; |
22 height: 500px; | 22 height: 500px; |
23 background-color: yellow; | 23 background-color: yellow; |
24 -webkit-transform: translateZ(0); | 24 transform: translateZ(0); |
25 } | 25 } |
26 </style> | 26 </style> |
27 </head> | 27 </head> |
28 | 28 |
29 <body> | 29 <body> |
30 <div id="outer"> | 30 <div id="outer"> |
31 <div id="inner"></div> | 31 <div id="inner"></div> |
32 </div> | 32 </div> |
33 <div id="overlap"></div> | 33 <div id="overlap"></div> |
34 </body> | 34 </body> |
35 </html> | 35 </html> |
OLD | NEW |