| OLD | NEW |
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <meta http-equiv="Content-type" content="text/html; charset=utf-8"> | 4 <meta http-equiv="Content-type" content="text/html; charset=utf-8"> |
| 5 <style type="text/css" media="screen"> | 5 <style type="text/css" media="screen"> |
| 6 div { | 6 div { |
| 7 -webkit-box-sizing: border-box; | 7 -webkit-box-sizing: border-box; |
| 8 } | 8 } |
| 9 .solid { | 9 .solid { |
| 10 position: absolute; | 10 position: absolute; |
| 11 width: 200px; | 11 width: 200px; |
| 12 height: 200px; | 12 height: 200px; |
| 13 background-color: green; | 13 background-color: green; |
| 14 } | 14 } |
| 15 | 15 |
| 16 .opacity { opacity: .1; } | 16 .opacity { opacity: .1; } |
| 17 | 17 |
| 18 .composited { | 18 .composited { |
| 19 -webkit-transform: translate3d(0, 0, 0); | 19 transform: translate3d(0, 0, 0); |
| 20 } | 20 } |
| 21 * { margin: 0; padding: 0; } | 21 * { margin: 0; padding: 0; } |
| 22 | 22 |
| 23 </style> | 23 </style> |
| 24 </head> | 24 </head> |
| 25 <div class="opacity solid composited">123</div> | 25 <div class="opacity solid composited">123</div> |
| 26 | 26 |
| 27 </html> | 27 </html> |
| OLD | NEW |