Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <style> | |
| 5 body { | |
| 6 margin: 0; | |
| 7 } | |
| 8 | |
| 9 .absolute-box { | |
| 10 position: absolute; | |
| 11 top: 50px; | |
| 12 height: 50px; | |
| 13 width: 100%; | |
| 14 background-color: green; | |
| 15 } | |
| 16 </style> | |
| 17 </head> | |
| 18 <body> | |
| 19 <div class="absolute-box"></div> | |
| 20 </body> | |
| 21 </html> | |
| OLD | NEW |