Created
October 31, 2016 11:27
-
-
Save nurbek-ab/d4105ce6761fdf2293f480b04c7cd277 to your computer and use it in GitHub Desktop.
Bootstrap modal centered vertically via CSS only.
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
/*https://codepen.io/dimbslmh/full/mKfCc*/ | |
.modal { | |
text-align: center; | |
padding: 0!important; | |
} | |
.modal:before { | |
content: ''; | |
display: inline-block; | |
height: 100%; | |
vertical-align: middle; | |
margin-right: -4px; | |
} | |
.modal-dialog { | |
display: inline-block; | |
text-align: left; | |
vertical-align: middle; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment