18 lines
363 B
HTML
18 lines
363 B
HTML
<!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>
|