Home About
Forked from - Modal Error/by kelvinspaces
  • Preview size
    Default Moto G4 Galaxy S5 Pixel 2 Pixel 2 XL iPhone 5/SE iPhone 6/7/8 iPhone 6/7/8 Plus iPhone X iPad iPad Pro Surface Duo Galaxy Fold
  • Settings
  • Change view
    standard view icon Standard view side view icon Side view project view icon Side-tab view Full screen view icon Full screen
  • HTML
  • CSS
  • JS
xxxxxxxxxx
 
1
<!-- Button trigger modal -->
2
<button
3
  type="button"
4
  class="btn btn-primary"
5
  data-mdb-toggle="modal"
6
  data-mdb-target="#exampleModal"
7
>
8
  <i class="mdi mdi-account"></i>
9
</button>
10
​
11
<!-- Modal -->
12
<div
13
  class="modal fade"
14
  id="exampleModal"
15
  tabindex="-1"
16
  aria-labelledby="exampleModalLabel"
17
  aria-hidden="true"
18
>
19
  <div class="modal-dialog">
20
    <div class="modal-content">
21
      <div class="modal-header">
22
        <h5 class="modal-title" id="exampleModalLabel">Modal title</h5>
23
        <button
24
          type="button"
25
          class="btn-close"
26
          data-mdb-dismiss="modal"
27
          aria-label="Close"
28
        ></button>
29
      </div>
30
      <div class="modal-body">...</div>
31
      <div class="modal-footer">
32
        <button type="button" class="btn btn-secondary" data-mdb-dismiss="modal">
33
          Close
34
        </button>
35
        <button type="button" class="btn btn-primary">Save changes</button>
36
      </div>
37
    </div>
38
  </div>
39
</div>
1
 
1
​
1
 
1
​
Console errors: 0
Support