OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <title>Reduction</title> | 3 <title>Reduction</title> |
4 <style> | 4 <style> |
5 #content-container { | 5 #content-container { |
6 position:absolute; | 6 position:absolute; |
7 top:48px; | 7 top:48px; |
8 bottom:0; | 8 bottom:0; |
9 left:0; | 9 left:0; |
10 right:0; | 10 right:0; |
11 margin-left:225px; | 11 margin-left:225px; |
12 } | 12 } |
13 | 13 |
14 #composited { | 14 #composited { |
15 height: 38px; | 15 height: 38px; |
16 -webkit-transform:translate3d(0px, 0px, 0px); | 16 transform:translate3d(0px, 0px, 0px); |
17 } | 17 } |
18 | 18 |
19 #positioned-2 { | 19 #positioned-2 { |
20 position:absolute; | 20 position:absolute; |
21 top:40px; | 21 top:40px; |
22 bottom:0; | 22 bottom:0; |
23 left:0; | 23 left:0; |
24 right:0; | 24 right:0; |
25 } | 25 } |
26 | 26 |
27 .positioned-3 { | 27 .positioned-3 { |
28 position:absolute; | 28 position:absolute; |
29 top:0; | 29 top:0; |
30 bottom:0; | 30 bottom:0; |
31 left:0; | 31 left:0; |
32 right:0; | 32 right:0; |
33 } | 33 } |
34 | 34 |
35 #transformed-container { | 35 #transformed-container { |
36 -webkit-transform: translateX(0); | 36 transform: translateX(0); |
37 height:300px; | 37 height:300px; |
38 width:600px; | 38 width:600px; |
39 } | 39 } |
40 | 40 |
41 #overflow { | 41 #overflow { |
42 overflow:auto; | 42 overflow:auto; |
43 border: 2px solid black; | 43 border: 2px solid black; |
44 } | 44 } |
45 | 45 |
46 .positioned-4 { | 46 .positioned-4 { |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 | 83 |
84 <div style="background-color:purple; width:50px; height:300p
x;"></div> | 84 <div style="background-color:purple; width:50px; height:300p
x;"></div> |
85 <br/> | 85 <br/> |
86 <div style="width:500px; height:50px; background-color:green
;"></div> | 86 <div style="width:500px; height:50px; background-color:green
;"></div> |
87 </div> | 87 </div> |
88 </div> | 88 </div> |
89 </div> | 89 </div> |
90 </div> | 90 </div> |
91 </body> | 91 </body> |
92 </html> | 92 </html> |
OLD | NEW |