-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path64_box-shadow.html
50 lines (41 loc) · 1.15 KB
/
64_box-shadow.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
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<style>
div {
width: 300px;
height: 100px;
padding: 15px;
margin: 20px;
background-color: yellow;
}
div:nth-child(1) {
box-shadow: 10px 10px;
}
div:nth-child(2) {
box-shadow: 10px 10px blue;
}
div:nth-child(3) {
box-shadow: 10px 10px 10px blue;
}
div:nth-child(4) {
box-shadow: 10px 10px 10px 10px blue;
}
div:nth-child(5) {
box-shadow: inset 10px 10px 10px 10px blue;
}
div:nth-child(6) {
background-color: white;
box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2), 0px 6px 20px 0 rgba(0, 0, 0, 0.19)
}
</style>
</head>
<body>
<div>This is a div element with a box-shadow</div>
<div>This is a div element with a box-shadow</div>
<div>This is a div element with a box-shadow</div>
<div>This is a div element with a box-shadow</div>
<div>This is a div element with a box-shadow</div>
<div>This is a div element with a box-shadow</div>
</body>
</html>