-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (33 loc) · 922 Bytes
/
index.html
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
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Backdrop filter test</title>
<style>
html{
background: #333 url( 'http://lorempixel.com/200/300/abstract' ) center center repeat;
}
.container{
position: absolute;
top: 50%;
left: 0;
right: 0;
width: 400px;
height: 400px;
margin: -200px auto 0;
-webkit-backdrop-filter: blur(10px);
font-size: 30px;
font-family: HelveticaNeue, sans-serif;
color: #fff;
}
.container p{
margin: 20px;
}
</style>
</head>
<body>
<div class="container">
<p>Test of the backdrop filter property :)</p>
</div>
</body>
</html>