Skip to content

Instantly share code, notes, and snippets.

@ricardodantas
Created September 4, 2014 18:01
Show Gist options
  • Select an option

  • Save ricardodantas/67ab94df3042fb5f0d0f to your computer and use it in GitHub Desktop.

Select an option

Save ricardodantas/67ab94df3042fb5f0d0f to your computer and use it in GitHub Desktop.
Centralizar verticalmente e horizontalmente elementos (css/html) --- From http://css-tricks.com/centering-css-complete-guide/
.parent { position: relative; }
.child { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment