1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<!DOCTYPE html> <html> <body> <style> body { height:5000px; overflow:hidden; } div { position:relative; top:500px; width:300px; height:300px; background-color:red; } </style> <script> window.scrollTo(0,500); </script> <table> <tr><td><div></div></td></tr> </table> </body> </html>