blob: 8dee2b2412bece0d2ec8a4485b6ddf53e2feeb79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Fixed background inside blur filter</title>
<style>
.scrollable {
width: 100px;
height: 100px;
overflow: hidden;
}
.bg {
width: 100px;
height: 100px;
background-image: url("repeatable-diagonal-gradient.png");
background-repeat: no-repeat;
background-attachment: fixed;
}
.blur {
filter: blur(10px);
}
</style>
</head>
<body>
<div class="scrollable">
<div class="bg blur"></div>
</div>
</body>
</html>
|