Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save gothburz/a12a7733664c75b1cf39 to your computer and use it in GitHub Desktop.
Save gothburz/a12a7733664c75b1cf39 to your computer and use it in GitHub Desktop.
Center Anything in the Dead Center of the Page Always!
<h1 class="center">A Super Sexy Header Tag<h1>
.center{
position: fixed;
top: 50%;
left: 50%;
/* bring your own prefixes */
transform: translate(-50%, -50%);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment