Fix Outlook's ghost spacing bugs in one click.
Auto-inject the legendary 0.05pt margin/padding trick into every table cell so Outlook for Windows stops collapsing rows and adding mystery whitespace. Drop-in fix, fully reversible.
The 0.05pt trick that fixes Outlook
Microsoft Word — the renderer powering Outlook for Windows — collapses margins on table cells and adds phantom vertical whitespace at unpredictable spots. The fix the email community converged on: set a near-zero margin and padding (typically 0.05pt) on every <table>, <td>, and <th>. Word respects the declaration and stops collapsing; modern clients round to zero and ignore it entirely.
This sanitizer does the rewrite for you. Paste your HTML, click Sanitize, ship the output. If you already have non-zero padding on a cell, it's preserved. If you have margin:0; padding:0; explicitly (the css-reset pattern), the sanitizer overrides with the spacing value because that pattern is what causes the Outlook collapse in the first place.