Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save shopifypartners/d055e787d54c08b527ed993c03fb2985 to your computer and use it in GitHub Desktop.
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
@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