Created
November 14, 2015 03:13
-
-
Save juanibrex/947e7eff92adfafe4ae4 to your computer and use it in GitHub Desktop.
Centrar un elemento absolutamente respecto a su padre
This file contains 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
.padre{ | |
position: relative; | |
} | |
.padre .hijo{ | |
position: absolute; | |
top: 0; | |
right: 0; | |
bottom: 0; | |
left: 0; | |
margin: auto; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment