blob: d8747790bde027c360a1861c4d2ba7327396f69c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<style>
#container {
overflow: scroll;
width: 400px;
height: 300px;
background: linear-gradient(black, white);
background-attachment: local;
}
#bloat {
height: 1000px;
}
</style>
<div id="container">
<div id="bloat"></div>
</div>
<script>
document.getElementById('container').scrollTop = 1000;
</script>
|