зеркало из https://github.com/mozilla/gecko-dev.git
22 строки
291 B
HTML
22 строки
291 B
HTML
|
<!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>
|