OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <style> | 4 <style> |
5 .comp { | 5 .comp { |
6 -webkit-transform: translateZ(0px); | 6 transform: translateZ(0px); |
7 } | 7 } |
8 body { | 8 body { |
9 margin:0; | 9 margin:0; |
10 padding:0; | 10 padding:0; |
11 } | 11 } |
12 .shadow { | 12 .shadow { |
13 position:absolute; | 13 position:absolute; |
14 left:20px; right:20px; | 14 left:20px; right:20px; |
15 width:500px; | 15 width:500px; |
16 height:500px; | 16 height:500px; |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 <body> | 50 <body> |
51 <!-- If culled incorrectly, the top/left edges outside of the shadowed box end u
p being culled instead of painted/drawn properly. --> | 51 <!-- If culled incorrectly, the top/left edges outside of the shadowed box end u
p being culled instead of painted/drawn properly. --> |
52 <div class="comp shadow"> | 52 <div class="comp shadow"> |
53 <div id="scroll"> | 53 <div id="scroll"> |
54 <div class="scrollContent"> | 54 <div class="scrollContent"> |
55 </div> | 55 </div> |
56 </div> | 56 </div> |
57 </div> | 57 </div> |
58 </body> | 58 </body> |
59 </html> | 59 </html> |
OLD | NEW |