blob: facbbc0ecbb17342d073af9e4d694b2c86025ae0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<meta charset="utf-8">
<title>Blend a background image and a background color on the root, specifying background-attachment: fixed</title>
<style>
html {
scrollbar-width: none;
}
body {
background: url('as-image/white_square.svg'), #777777;
background-attachment: fixed ;
height: 20000px;
background-blend-mode: multiply;
}
</style>
|