Skip to content

Instantly share code, notes, and snippets.

@veysiertekin
Last active August 29, 2015 13:57
Show Gist options
  • Save veysiertekin/9780018 to your computer and use it in GitHub Desktop.
Save veysiertekin/9780018 to your computer and use it in GitHub Desktop.
Cross Browser element centralization either vertical and hozirontal (also support ie 7) .
.vacA {display:table; height: 100%; width:100%; position: relative;}
.vacB {*position: absolute; top: 50%; display: table-cell; vertical-align: middle;}
.vacC {*position: relative; top: -50%;}
<div class="vacA"><div class="vacB"><div class="vacC">
<!-- blah blah -->
</div></div></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment