Created
February 28, 2014 08:00
-
-
Save jarnesjo/9267107 to your computer and use it in GitHub Desktop.
Vertical align middle
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
/* Internet Explorer 10 */ | |
display:-ms-flexbox; | |
-ms-flex-pack:center; | |
-ms-flex-align:center; | |
/* Firefox */ | |
display:-moz-box; | |
-moz-box-pack:center; | |
-moz-box-align:center; | |
/* Safari, Opera, and Chrome */ | |
display:-webkit-box; | |
-webkit-box-pack:center; | |
-webkit-box-align:center; | |
/* W3C */ | |
display:box; | |
box-pack:center; | |
box-align:center; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment