Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <style> | |
| 5 .outer { | |
| 6 position: relative; | |
| 7 width: 280px; | |
| 8 height: 160px; | |
| 9 background-color: green; | |
| 10 border-radius:3px; | |
| 11 overflow:hidden; | |
| 12 will-change: transform; | |
| 13 } | |
| 14 | |
| 15 .inner { | |
| 16 position:absolute; | |
| 17 top:0; | |
| 18 left:0; | |
| 19 right:0; | |
| 20 bottom:0; | |
| 21 background-color:red; | |
| 22 border: 1px solid black; | |
| 23 opacity: 0.5; | |
| 24 will-change: transform; | |
| 25 } | |
| 26 </style> | |
| 27 </head> | |
| 28 <body> | |
| 29 <div class="outer"> | |
| 30 <div class="inner"></div> | |
| 31 </div> | |
| 32 </body> | |
| 33 </html> | |
| OLD | NEW |