Created
September 16, 2019 20:57
-
-
Save TedGoas/c5b0a1f391c62bd3c8e5c57e29341cc2 to your computer and use it in GitHub Desktop.
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
<style> | |
/* Remove space around the email design. */ | |
html, | |
body { | |
margin: 0 auto !important; | |
padding: 0 !important; | |
height: 100% !important; | |
width: 100% !important; | |
} | |
/* Stop Outlook resizing small text. */ | |
* { | |
-ms-text-size-adjust: 100%; | |
} | |
/* Stop Outlook from adding extra spacing to tables. */ | |
table, | |
td { | |
mso-table-lspace: 0pt !important; | |
mso-table-rspace: 0pt !important; | |
} | |
/* Use a better rendering method when resizing images in Outlook IE. */ | |
img { | |
-ms-interpolation-mode:bicubic; | |
} | |
/* Prevent Windows 10 Mail from underlining links. Styles for underlined links should be inline. */ | |
a { | |
text-decoration: none; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment