Created
September 4, 2014 18:01
-
-
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/
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
| .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