blob: 6bf7cba6881aee92b34d4f5accfc6fbc235d922f [file] [log] [blame]
simon.fraser@apple.com728c7992018-12-04 22:58:36 +00001<!DOCTYPE html>
2<html>
3<head>
4 <style>
5 body {
6 height: 6000px;
7 }
8 .box {
9 position: absolute;
10 top: 5718px;
11 left: 10px;
12 width: 200px;
13 height: 200px;
14 background-color: green;
15 }
16
17 .fixed-background {
18 margin-top: 300px;
19 height: 200px;
20 background-image: linear-gradient(white, silver);
21 background-attachment: fixed;
22 }
23 </style>
24</head>
25<body>
26
27<div class="box"></div>
28
29<div class="fixed-background">
30 I have a fixed background.
31</div>
32<script>
33 window.scrollTo(0, 6000);
34</script>
35</body>
36</html>