Email HTML template

This commit is contained in:
Luke Malpass
2018-04-20 16:20:55 +01:00
parent bb7c1841f9
commit 110e6eeb49
14 changed files with 438 additions and 0 deletions

View File

@ -0,0 +1,49 @@
// Body
body
{
// Reset margin/padding
margin: 0;
padding: 0;
}
// Image
img
{
// Remove border
border: 0 none;
// Auto height
height: auto;
// Set line-height so inline works
line-height: 100%;
// No outline
outline: none;
// No text decoration
text-decoration: none;
}
a img
{
// Remove border
border: 0 none;
}
// Table and column
table, td
{
// Remove extra spacing
border-collapse: collapse;
// No padding
padding: 0;
}
// Header
h1,h2,h3,h4,h5,h6
{
// Margin
margin: 0;
}