Created
January 15, 2014 02:08
-
-
Save lnickers2004/8429537 to your computer and use it in GitHub Desktop.
Bootstrap3: centered modal with close button
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
<!-- modal Dialog --> | |
<!--.modal.fade#sentDialog>.modal-dialog>.modal-content--> | |
<div id="sentDialog" class="modal fade " tabindex="-1"> | |
<div class="modal-dialog " id="modal-centered-absolute"> | |
<div class="modal-content"> | |
<div class="modal-header"> | |
<a href="#" class="close" data-dismiss="modal">×</a> | |
<h4>Thanks for clicking!</h4> | |
</div> | |
<div class="modal-body"> | |
<p>Are you Sure?</p> | |
</div> | |
<div class="modal-footer"> | |
<button class="btn btn-success" data-dismiss="modal">Close</button> | |
</div> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment