Last active
March 21, 2016 11:51
-
-
Save jeffreysfridge/21e6e2121e2b8cc4ec98 to your computer and use it in GitHub Desktop.
vertical align middle responsive table classes
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
.disp-table { | |
display: table; | |
width: 100%; | |
table-layout: fixed; /* needed for firefox */ | |
} | |
.disp-cell { | |
display: table-cell; | |
vertical-align: middle; | |
float: none; | |
} | |
@media only screen and (max-width : 992px) { | |
.disp-table, | |
.disp-cell { | |
display: block !important; | |
float: none; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment