Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save shopifypartners/4fdaab99457cdc18e3d99ee4a4c432a7 to your computer and use it in GitHub Desktop.
Save shopifypartners/4fdaab99457cdc18e3d99ee4a4c432a7 to your computer and use it in GitHub Desktop.
The Fab Four technique min width wins example - https://www.shopify.com/partners/blog/dirty-css-hacks-for-responsive-emails
.block {
display: inline-block;
min-width: 50%; /* 300px */
max-width: 100%; /* 600px */
width: calc((480px - 100%) * 480); /* or [calc((480px - 600px) * 480);], which equals -57,600px */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment