blob: f6b1cb7c3aafb1f85a32a210c7355be3e87b1b7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<html>
<head>
<style>
html {
transform: translateZ(0);
}
body {
height: 2000px;
background-image: url('resources/simple_image.png');
background-size: 200px 200px;
background-attachment: fixed;
overflow: hidden; /* hide scrollbar */
}
</style>
</head>
<body>
</body>
</html>
|