Advertisement
Guest User

Untitled

a guest
Dec 5th, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.21 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <title></title>
  8.  
  9. <style>
  10.  
  11. /* What it does: Remove spaces around the email design added by some email clients. */
  12. html,
  13. body {
  14. margin: 0 auto !important;
  15. padding: 0 !important;
  16. height: 100% !important;
  17. width: 100% !important;
  18. }
  19.  
  20. /* What it does: Centers email on Android 4.4 */
  21. div[style*="margin: 16px 0"] {
  22. margin:0 !important;
  23. }
  24.  
  25. /* What it does: Stops Outlook from adding extra spacing to tables. */
  26. table,
  27. td {
  28. mso-table-lspace: 0pt !important;
  29. mso-table-rspace: 0pt !important;
  30. }
  31.  
  32. /* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */
  33. table {
  34. border-spacing: 0 !important;
  35. border-collapse: collapse !important;
  36. table-layout: fixed !important;
  37. margin: 0 auto !important;
  38. }
  39. table table table {
  40. table-layout: auto;
  41. }
  42.  
  43. </style>
  44.  
  45.  
  46. </head>
  47. <body width="100%" bgcolor="#ffffff" style="margin: 0;">
  48. <center style="width: 100%; background: #ffffff;">
  49.  
  50. <div style="max-width: 680px; margin: auto;">
  51. <!--[if mso]>
  52. <table role="presentation" cellspacing="0" cellpadding="0" border="0" width="680" align="center">
  53. <tr>
  54. <td>
  55. <![endif]-->
  56.  
  57. <!-- Centered Email : BEGIN -->
  58. <table role="presentation" cellspacing="0" cellpadding="0" border="0" align="center" width="100%" style="max-width: 680px;">
  59. <tr>
  60. <td style="">
  61. EMAIL CONTENT GOES HERE
  62. </td>
  63. </tr>
  64. </table>
  65. <!-- Centered Email : END -->
  66.  
  67. <!--[if mso]>
  68. </td>
  69. </tr>
  70. </table>
  71. <![endif]-->
  72. </div>
  73. </center>
  74. </body>
  75. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement