Files
Angel6/Email HTML Template/Template/Source/Sass/reset.scss
2018-04-20 16:20:55 +01:00

49 lines
571 B
SCSS

// 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;
}