Forked from sarachisholm/order-and-reorder-content.css
Last active
March 17, 2017 19:38
-
-
Save shopifypartners/d055e787d54c08b527ed993c03fb2985 to your computer and use it in GitHub Desktop.
Order and reorder content CSS for responsive emails - https://www.shopify.com/partners/blog/dirty-css-hacks-for-responsive-emails
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
@media only screen and (max-width: 500px) { | |
.wrapper { | |
display: table; | |
} | |
.header { | |
display: table-caption; | |
} | |
.nav { | |
display: block; | |
} | |
.content { | |
display: table-header-group; | |
} | |
.footer { | |
display: table-footer-group; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment