blob: c56f1b80d665d0e071d08fcbfa832f054fac0d94 (
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>
<style>
.site-header {
position: relative;
z-index: 7;
}
.dropnav {
visibility: hidden;
}
.dropnav:after {
-webkit-backdrop-filter:blur(5px);
content:"";
height:calc(100vh - 70px);
position:fixed;
width:100%;
}
</style>
</head>
<body>
<header class="site-header">
<div class="dropnav">
<span>App</span>
</div>
</header>
<div style="position: relative; top: 100px; left: 100px; width: 200px; height: 200px; background: blue;"></div>
</body>
</html>
|