-
Notifications
You must be signed in to change notification settings - Fork 12
/
group.html
79 lines (69 loc) · 1.47 KB
/
group.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
<head>
<title>Drop</title>
<!-- Styles -->
<link rel="stylesheet" type="text/css" href="dist/drop.css">
<style type="text/css">
nav a {
text-decoration: none;
}
.list-inline {
list-style: none;
margin-left: -0.5em;
margin-right: -0.5em;
padding: 0;
}
.list-inline > li {
display: block;
margin-left: 0.5em;
margin-right: 0.5em;
}
@media (min-width: 40em) {
.list-inline > li {
display: inline-block;
}
}
/**
* @bugfix Prevent webkit from removing list semantics
* 1. Add a non-breaking space
* 2. Make sure it doesn't mess up the DOM flow
*/
.list-inline > li:before {
content: "\200B"; /* 1 */
position: absolute; /* 2 */
}
</style>
</head>
<body>
<h1>Drop</h1>
<nav>
<ul class="list-inline" id="nav">
<li>
<details class="dropdown">
<summary>This has dropdown items</summary>
<ul>
<li><a href="#hi">Hi</a></li>
<li><a href="#universe">Universe</a></li>
</ul>
</details>
</li>
<li><a href="#hello">Hello</a></li>
<li><a href="#world">World</a></li>
<li>
<details class="dropdown dropdown-right">
<summary>This has dropdown items, too</summary>
<ul>
<li><a href="#hermoine">Hermione</a></li>
<li><a href="#harry">Harry Potter</a></li>
</ul>
</details>
</li>
</ul>
</nav>
<script src="dist/js/drop.polyfills.js"></script>
<script>
var dropdown = new Drop('#nav') ;
</script>
</body>
</html>