-
Notifications
You must be signed in to change notification settings - Fork 4
/
dropdowns-items.html
81 lines (68 loc) · 3.66 KB
/
dropdowns-items.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
80
81
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Bootstrap Hcode</title>
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<div class="container">
<div class="dropdown">
<button class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown" id="menu" aria-haspopup="true" aria-expanded="false">Menu</button>
<div class="dropdown-menu" aria-labelledby="menu">
<button type="button" class="dropdown-item">Item 1</button>
<button type="button" class="dropdown-item">Item 2</button>
<button type="button" class="dropdown-item">Item 3</button>
</div>
</div>
<hr>
<div class="dropdown">
<button class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown" id="menu" aria-haspopup="true" aria-expanded="false">Menu</button>
<div class="dropdown-menu" aria-labelledby="menu">
<span class="dropdown-item-text">Items</span>
<button type="button" class="dropdown-item">Item 1</button>
<button type="button" class="dropdown-item">Item 2</button>
<button type="button" class="dropdown-item">Item 3</button>
</div>
</div>
<hr>
<div class="dropdown">
<button class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown" id="menu" aria-haspopup="true" aria-expanded="false">Menu</button>
<div class="dropdown-menu" aria-labelledby="menu">
<span class="dropdown-item-text">Items</span>
<button type="button" class="dropdown-item active">Item 1</button>
<button type="button" class="dropdown-item">Item 2</button>
<button type="button" class="dropdown-item">Item 3</button>
</div>
</div>
<hr>
<div class="dropdown">
<button class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown" id="menu" aria-haspopup="true" aria-expanded="false">Menu</button>
<div class="dropdown-menu" aria-labelledby="menu">
<span class="dropdown-item-text">Items</span>
<button type="button" class="dropdown-item" disabled>Item 1</button>
<a href="#" class="dropdown-item disabled">Item 1</a>
<button type="button" class="dropdown-item">Item 2</button>
<button type="button" class="dropdown-item">Item 3</button>
</div>
</div>
<hr>
<div class="dropdown">
<button class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown" id="menu" aria-haspopup="true" aria-expanded="false">Menu</button>
<div class="dropdown-menu" aria-labelledby="menu">
<h6 class="dropdown-header">Título</h6>
<button type="button" class="dropdown-item" disabled>Item 1</button>
<a href="#" class="dropdown-item disabled">Item 1</a>
<h6 class="dropdown-header">Título</h6>
<button type="button" class="dropdown-item">Item 2</button>
<button type="button" class="dropdown-item">Item 3</button>
</div>
</div>
</div>
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>