Last active
January 22, 2018 13:16
-
-
Save mrkkr/cacc3df41483d5236bde87177ae2c668 to your computer and use it in GitHub Desktop.
Prefixy flexbox #css
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
{ | |
display: flex; | |
display: -webkit-flex; | |
justify-content: center; | |
-webkit-justify-content: center; | |
align-items: center; | |
-webkit-align-items: center; | |
flex-direction: column; | |
-webkit-flex-direction: column; | |
-webkit-align-self: center; | |
align-self: center; | |
-webkit-flex-wrap: wrap; | |
flex-wrap: wrap; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment