Remove unused CSS
Cleaning up your HTML email results in smaller file sizes, which translates to faster email sendouts, faster opens (think slow 3G), and snappier paint times.
Gmail will clip your email around 102KB, so anything past that mark won't even be in the DOM (which can lead to unexpected results like tracking pixel not loaded or, worse, hidden unsubscribe links). You might also want to consider the environmental impact of sending large, unoptimized emails.
This Transformer will remove any unused CSS styles and corresponding classes in your HTML, helping you reduce your file size.
Usage
Enable it in your Environment config:
module.exports = {
removeUnusedCSS: true,
}
Customization
You may configure this Transformer through the removeUnusedCSS
key in your config.js
.
whitelist
Type: Array
Default: []
Array of classes or id's that you don't want removed.
You may use any matcher patterns, for example:
module.exports = {
removeUnusedCSS: {
whitelist: ['.External*', '.ReadMsgBody', '.yshortcuts', '.Mso*', '#*'],
}
}
Resetting email client styles is often done through CSS selectors that do not exist in your email's code. Maizzle uses the tailwindcss-email-variants
plugin to do this, so to ensure works as expected whitelist
automatically preserves the following selectors:
[
'*body*', // Gmail
'.gmail*', // Gmail
'.apple*', // Apple Mail
'.ios*', // Mail on iOS
'.ox-*', // Open-Xchange
'.outlook*', // Outlook.com
'[data-ogs*', // Outlook.com
'.bloop_container', // Airmail
'.Singleton', // Apple Mail 10
'.unused', // Notes 8
'.moz-text-html', // Thunderbird
'.mail-detail-content', // Comcast, Libero webmail
'*edo*', // Edison (all)
'#*', // Freenet uses #msgBody
'.lang*' // Fenced code blocks
]
backend
Type: Array
Default: [{heads: '{{', tails: '}}'}, {heads: '{%', tails: '%}'}]
If you use computed class names, like for example class="{{ computedRed }} text-sm"
, the library will normally treat {{
and }}
as class names and will remove them, since there will be no corresponding CSS selectors defined.
To prevent this from happening, use the backend
option to define the delimiters:
module.exports = {
removeUnusedCSS: {
backend: [
{ heads: '[[', tails: ']]' },
]
}
}
By default, Maizzle preserves {{ }}
and {% %}
.
removeHTMLComments
Type: Boolean
Default: true
Set to false
to prevent email-comb
from removing <!-- HTML comments -->
.
module.exports = {
removeUnusedCSS: {
removeHTMLComments: false
}
}
removeCSSComments
Type: Boolean
Default: true
Set to false
to prevent email-comb
from removing /* CSS comments */
.
module.exports = {
removeUnusedCSS: {
removeCSSComments: false
}
}
Preserving CSS comments when inlining
If you have CSS inlining enabled, CSS comments will still be removed, even with removeCSSComments
disabled.
You may use the data-embed
attribute on a <style>
tag to disable inlining for CSS inside it, if you need to preserve CSS comments.
For example, MailChimp uses CSS comments to define styles that are editable in their email editor. Here's how you can preserve them:
- Set
removeCSSComments: false
in your config, as above - Write your CSS with comments in a separate
<style>
tag:
<style data-embed>
/*
@tab Page
@section Body Background
@tip Set the background colour for the email body.
*/
.wrapper {
/*@editable*/background-color: #EEEEEE !important;
}
</style>
removeInlinedSelectors
Type: Boolean
Default: undefined
By default, classes are removed from the class
attribute of a tag, after they have been successfully inlined.
Set this option to false
to prevent that from happening:
module.exports = {
removeUnusedCSS: {
removeInlinedSelectors: false,
}
}
doNotRemoveHTMLCommentsWhoseOpeningTagContains
Type: Array
Default: ['[if', '[endif']
HTML email code often includes Outlook or IE conditional comments, which you probably want to preserve. If the opening tag of a conditional includes any of the strings you list here, the Transformer will not remove that comment.
module.exports = {
removeUnusedCSS: {
doNotRemoveHTMLCommentsWhoseOpeningTagContains: ['[if', '[endif']
}
}
uglify
Type: Boolean
Default: false
Enable this to rename all classes and id's in both your <style>
tags and your body HTML elements, to be as few characters as possible.
Used in production, it will help trim down your HTML size.
module.exports = {
removeUnusedCSS: {
uglify: true
}
}
API
The Transformer uses the email-comb library, see all available options here.
const {removeUnusedCSS} = require('@maizzle/framework')
const config = {/* email-comb options */}
const html = await removeUnusedCSS(`<div class="unused">test</div>`, config)