| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>The page should scroll back to the top</title> | |
| <style> | |
| body { | |
| height: 2000px; | |
| background-image: repeating-linear-gradient(white, silver 200px); | |
| } | |
| .box { | |
| width: 100px; | |
| height: 100px; | |
| background-color: green; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="box"></div> | |
| </body> | |
| </html> |