Forked from sarachisholm/responsive-email-fab-four-min-width-wins.css
Last active
March 17, 2017 19:46
-
-
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
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
.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