Skip to content

Instantly share code, notes, and snippets.

@jarnesjo
Created February 28, 2014 08:00
Show Gist options
  • Save jarnesjo/9267107 to your computer and use it in GitHub Desktop.
Save jarnesjo/9267107 to your computer and use it in GitHub Desktop.
Vertical align middle
/* 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