Created
June 5, 2018 15:32
-
-
Save luislobo14rap/b567166dc32f873f0e404b73cb8ce4ec to your computer and use it in GitHub Desktop.
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
/* table-container.css v1 */ | |
.table-container{ | |
display: table; | |
height: 100%; | |
margin-left: auto; | |
margin-right: auto; | |
} | |
.table-container > *{ | |
display: table-cell; | |
vertical-align: middle; | |
} |
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
/* table-container.min.css v1 */ | |
.table-container{display:table;height:100%;margin-left:auto;margin-right:auto}.table-container>*{display:table-cell;vertical-align:middle} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment