Why Outlook Adds Extra Lines Between Bullet Points 2026
Why Outlook Adds Extra Lines Between Bullet Points 2026 - Practical tips from the PasteClean team.

There is nothing more frustrating than crafting a concise, punchy executive summary in a Google Doc or AI tool, only to paste it into an email and watch it explode into a double-spaced disaster. You intended to send a tight list of deliverables; what your client receives looks like a high school essay trying to meet a page count requirement.
This isn't just a cosmetic annoyance—it’s a readability issue. When outlook bullet spacing goes rogue, it pushes critical information off the screen and forces scrolling, which drastically lowers the completion rate of your email.
Here is the technical reality of why Outlook inserts those phantom gaps, specifically in the context of the 2026 software landscape, and exactly how to fix it without rewriting your email from scratch.
The Arch-Nemesis: The Word Rendering Engine
To understand the bug, you have to understand the architecture. Unlike Gmail or Apple Mail, which use WebKit (a web-standard rendering engine) to display HTML emails, the classic Outlook desktop client still uses Microsoft Word to render HTML.
Yes, even in 2026, the backbone of corporate email is a word processor, not a web browser.
When you copy text from a browser—whether it’s ChatGPT, Notion, or a web-based CRM—you are copying HTML and CSS. When you paste that into Outlook, the Word engine attempts to "translate" that web code into Word’s internal formatting logic (VML and proprietary XML).
The translation is rarely 1:1. Web browsers handle lists using <ul> (unordered list) and <li> (list item) tags, usually with minimal default margins. Word, however, treats every bullet point as a "Paragraph."
In Word’s logic, a paragraph is defined by the Normal style, which almost always carries a default setting: Space After: 8pt or 10pt.
Pro Tip: If you see extra space, Outlook hasn't inserted a "blank line" in the traditional sense. It has applied a margin-bottom or padding-bottom style to the paragraph tag wrapping your text. You can’t backspace delete it because the space is part of the text's property, not a character.
The Anatomy of the "Extra Lines" Bug
Let’s look at the code. When you copy a list from a modern web tool, the HTML usually looks like this:
<ul>
<li style="margin-bottom: 0;">Task A</li>
<li style="margin-bottom: 0;">Task B</li>
</ul>
Modern browsers interpret this as a tight list. However, when this hits the clipboard and lands in Outlook, one of two things happens:
- The Paragraph Wrap: Outlook ignores the list item styling and wraps the content in
<p>tags. - The MSO Override: Outlook applies its own proprietary styles, often denoted as
mso-margin-top-altormso-margin-bottom-alt, which override your clean CSS.
The result is that your tight list is converted into a series of paragraphs with 1.15 line spacing and 10 points of padding after every single carriage return. This is why you see extra lines Outlook refuses to delete.
The "New Outlook" vs. Classic Outlook in 2026
We are currently in a fragmented ecosystem. Microsoft has pushed the "New Outlook" (essentially a web wrapper based on the Monarch architecture) heavily, but the "Classic" COM-based Outlook client remains the standard in enterprise environments due to legacy plugin requirements.
This creates a split experience:
- New Outlook (Web-based): Handles pasting much better because it renders HTML like a browser.
- Classic Outlook (Desktop): Still suffers from the Word engine spacing issues.
If you are sending B2B emails, you must assume your recipient is using Classic Outlook. If you don't format for the lowest common denominator, your formatting will break for the people who sign the checks.
How to Fix Bullet Points Manually (The Slow Way)
If you have already pasted the text and the damage is done, you can fix it using Outlook’s native paragraph settings. This is tedious for every email, but it works.
- Highlight the bulleted list (and only the list).
- Right-click and select Paragraph.
- Look at the Spacing section.
- Change Before and After to
0 pt. - Check the box that says "Don't add space between paragraphs of the same style."
This forces the Word engine to collapse the margins between your list items.
The "Shift + Enter" Workaround
A common muscle-memory fix for users is to use Shift + Enter (Soft Return) instead of Enter (Hard Return) when typing lists.
- Enter: Creates a new paragraph (
<p>), triggering the spacing bug. - Shift + Enter: Creates a line break (
<br>), keeping you inside the same paragraph block.
While this visually tightens the list, it breaks the semantic structure of the bullet points. If the recipient replies and tries to break your list apart to comment inline, the formatting will often collapse or behave unpredictably because it’s technically just one giant paragraph.
The Source Problem: AI and Web-Based Text
The prevalence of AI tools has exacerbated this issue. LLMs (Large Language Models) generate text in Markdown. When the chat interface renders that Markdown into HTML for you to copy, it often wraps list items in <div> blocks or includes complex inline CSS to support dark mode or specific font rendering.
Outlook hates complex inline CSS.
When Outlook encounters a <div> tag inside a list item, it panics and defaults to treating it as a separate block element with standard paragraph spacing. This is why pasting from ChatGPT directly into Outlook usually results in a double-spaced mess.
Concrete Example:
The Input (What you see in ChatGPT):
- Review Q3 financials
- Update stakeholder deck
- Finalize budget approval
The Output (What Outlook renders):
- Review Q3 financials (12px whitespace)
- Update stakeholder deck (12px whitespace)
- Finalize budget approval
The "Paste as Plain Text" Nuclear Option
The most common advice to fix bullet points is to use "Paste as Plain Text" (Ctrl+Shift+V or Command+Shift+V).
This strips all HTML, meaning Outlook applies its local Normal style to the raw text. While this solves the spacing issue, it introduces a productivity bottleneck: You lose all your other formatting.
Bold text, italics, hyperlinks, and indentation are wiped clean. You then have to spend 2-3 minutes re-bolding your key points and re-linking your URLs. In a high-volume email workflow, this time adds up. You are essentially trading a spacing problem for a re-formatting problem.
Using PasteClean to Strip the "Junk" Code
This is where a dedicated cleaning tool fits into the workflow. The goal isn't to remove all formatting (like Plain Text does), but to remove the conflicting formatting.
PasteClean specifically targets the CSS attributes that confuse the Word rendering engine—specifically line-height, margin-bottom, and complex div wrappers—while preserving bold, italics, and anchor tags (links).
By standardizing the HTML before it hits your clipboard, you force Outlook to render standard list items (<li>) rather than interpreting them as spaced-out paragraphs. It effectively "sanitizes" the code so that Outlook's Word engine accepts it without applying the default Normal.dotm padding.
Advanced: The CSS "Mso" Hack
If you are manually coding HTML templates for newsletters or automated signatures and want to prevent this permanently, you cannot rely on standard CSS. You must use Microsoft-specific conditional CSS.
To force tight spacing in Outlook 2026, you often need to inject this into your head styles:
ul, li {
mso-margin-top-alt: 0px !important;
mso-margin-bottom-alt: 0px !important;
margin-top: 0px !important;
margin-bottom: 0px !important;
}
This tells the Word engine specifically to ignore its alternative margin calculations. However, for day-to-day email correspondence, you cannot edit the HTML source code of every message, which brings us back to the importance of cleaning your clipboard data before pasting.
Why "Styles" Are Not the Answer
You might read advice suggesting you modify your "Paste Options" in Outlook settings to "Merge Formatting" or "Keep Text Only" by default.
Here is why that often fails: "Merge Formatting" tries to blend the source style with the destination style. If your destination style (Outlook's Normal) has a 10pt space after paragraphs, merging will simply adopt that spacing. You aren't fixing the root cause; you're just automating the application of bad spacing.
Insight: The only way to consistently get clean spacing is to ensure the incoming data explicitly requests zero margins, or is simplified enough that Outlook doesn't feel the need to wrap it in a new paragraph block.
Summary Checklist for Outlook 2026
If you are battling the double-space bug today, here is your immediate action plan:
- Identify the Source: If pasting from an AI tool or Google Docs, anticipate the spacing error.
- Avoid "Keep Source Formatting": Never use the default paste (Ctrl+V) if the source is a rich web application.
- Use an Intermediary: Paste into a tool like PasteClean to strip the
<div>tags and margin logic while keeping your bold/links intact. - Check Paragraph Settings: If fixing manually, ensure
Space Afteris set to 0pt, not "Auto." - Test Your Signature: Sometimes the "extra line" is actually caused by your HTML signature interacting with the list above it. Ensure your signature starts with a clear break.
Email clients are stubborn. While we wait for Microsoft to eventually retire the Word rendering engine (a rumor that has circulated for a decade), the most effective strategy is to control the HTML you feed it. Clean code equals clean emails.
Clean your AI text instantly
Paste text from ChatGPT, Claude, or any AI tool and get clean, email-ready formatting in one click.
Try PasteClean Free