Created
July 13, 2016 06:36
-
-
Save kirandash/e84b9d497683b7ae29c7f37552c46d28 to your computer and use it in GitHub Desktop.
This file contains 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
HTML | |
<button class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">Launch demo modal</button> | |
<!-- Modal --> | |
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> | |
<div class="vertical-alignment-helper"> | |
<div class="modal-dialog vertical-align-center"> | |
<div class="modal-content"> | |
<div class="modal-header"> | |
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span> | |
</button> | |
<h4 class="modal-title" id="myModalLabel">Modal title</h4> | |
</div> | |
<div class="modal-body">...</div> | |
<div class="modal-footer"> | |
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button> | |
<button type="button" class="btn btn-primary">Save changes</button> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
CSS | |
.vertical-alignment-helper { | |
display:table; | |
height: 100%; | |
width: 100%; | |
pointer-events:none; /* This makes sure that we can still click outside of the modal to close it */ | |
} | |
.vertical-align-center { | |
/* To center vertically */ | |
display: table-cell; | |
vertical-align: middle; | |
pointer-events:none; | |
} | |
.modal-content { | |
/* Bootstrap sets the size of the modal in the modal-dialog class, we need to inherit it */ | |
width:inherit; | |
height:inherit; | |
/* To center horizontally */ | |
margin: 0 auto; | |
pointer-events: all; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment