Created
July 15, 2013 10:08
-
-
Save krzysztofjeziorny/5998855 to your computer and use it in GitHub Desktop.
Bootstrap 3 modal example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a data-toggle="modal" href="#myModal" class="btn btn-primary">Launch modal</a> | |
<div class="modal" id="myModal"> | |
<div class="modal-dialog"> | |
<div class="modal-content"> | |
<div class="modal-header"> | |
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> | |
<h4 class="modal-title">Modal title</h4> | |
</div> | |
<div class="modal-body"> | |
Content for the dialog / modal goes here. | |
</div> | |
<div class="modal-footer"> | |
<a href="#" class="btn">Close</a> | |
<a href="#" class="btn btn-primary">Save changes</a> | |
</div> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment