Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <style> | |
| 2 .sticky { | |
| 3 position: relative; | |
| 4 top: 0; | |
| 5 margin-bottom: 800px; | |
| 6 height: 100px; | |
| 7 } | |
| 8 </style> | |
| 9 <script> | |
| 10 onload = function() { | |
| 11 target.scrollIntoView(); | |
| 12 } | |
| 13 </script> | |
| 14 <body> | |
| 15 <div class="sticky" style="background: red;"></div> | |
| 16 <div class="sticky" style="background: green;" id="target"></div> | |
| 17 </body> | |
| 18 </html> | |
| OLD | NEW |