Created
February 8, 2018 13:29
-
-
Save JoshuaFrontEnd/cac614579b17ecb4d59c2ffed3ff6d49 to your computer and use it in GitHub Desktop.
Centrar cualquier elemento hijo en posición vertical y horizontal en CSS con flexbox, aplicar clase css al contenedor
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
.centerFlex { | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment