Search
 
SCRIPT & CODE EXAMPLE
 

HTML

bootstrap large modal

<button type="button" class="btn btn-primary" data-toggle="modal" data-target=".bd-example-modal-lg">Large modal</button>

<div class="modal fade bd-example-modal-lg" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true">
  <div class="modal-dialog modal-lg">
    <div class="modal-content">
      ...
    </div>
  </div>
</div>
Comment

bootstrap small modal

<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal">
  Launch demo modal
</button>

<!-- Modal -->
<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
  <div class="modal-dialog" role="document">
    <div class="modal-content">
      <div class="modal-header">
        <h5 class="modal-title" id="exampleModalLabel">Modal title</h5>
        <button type="button" class="close" data-dismiss="modal" aria-label="Close">
          <span aria-hidden="true">×</span>
        </button>
      </div>
      <div class="modal-body">
        ...
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
        <button type="button" class="btn btn-primary">Save changes</button>
      </div>
    </div>
  </div>
</div>
Comment

PREVIOUS NEXT
Code Example
Html :: TypeError: Illegal invocation 
Html :: bootstrap 5 text bold 
Html :: input type="file" and display image 
Html :: bootstrap center button horizontally 
Html :: submit form on change 
Html :: add google search bar to our website in html 
Html :: vue datatable date format 
Html :: html how to display something on mobile and another on desktop 
Html :: upload icon font awesome 
Html :: bootstrap height 100vh class 
Html :: font awesome cdn link 
Html :: start html 
Html :: ver pdf en html 
Html :: handlebars teamplate script tag 
Html :: html start code 
Html :: svg line 
Html :: html year input 
Html :: js add class when hover 
Html :: angular foreach 
Html :: how to put a table in the middle of a div in html 
Html :: text color html 
Html :: how to put an image in the top right corner html 
Html :: contenteditable onchange 
Html :: get input value on button click javascript 
Html :: how to center an image in markdown 
Html :: html input radio 
Html :: html align right 
Html :: link new tab html 
Html :: filter in v-html 
Html :: load content of html without reloading python django 
ADD CONTENT
Topic
Content
Source link
Name
3+3 =